Skip to content

Commit

Permalink
Merge pull request #57 from NESTCollaboration/test
Browse files Browse the repository at this point in the history
Patching to v1.4.5
  • Loading branch information
sophiafarrell authored Mar 3, 2021
2 parents 11b1710 + 060cbd9 commit 26f0465
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.4
current_version = 1.4.5
files = setup.py src/nestpy/__init__.py
commit = True
tag = True
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ matrix: # No 32 bit, see https://github.com/NESTCollaboration/nest/issues/33
- docker
env: DOCKER_IMAGE=nestpy/nestpy_manylinux
language: python
- os: osx
osx_image: xcode9.4
env: PYTHON=2.7
- os: osx
osx_image: xcode9.4
env: PYTHON=3.6
Expand Down
14 changes: 14 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@ History

Patch releases mean (the Z number in X.Y.Z version) that the underlying physics has not changed. Changes to the NEST version will always trigger a minor or major release. If this library changes such that end users have to change their code, this may also trigger a minor or major release.

1.4.5 (2021-03-01)
-----------------
Sync with [NEST v2.2.1](https://github.com/NESTCollaboration/nest/releases/tag/v2.2.1)
* Cleaned up MANIFEST so pypi dist packages are less bulky
[#56](https://github.com/NESTCollaboration/nestpy/pull/56)
* Added floating point comparison method for equality checks
[#54](https://github.com/NESTCollaboration/nestpy/pull/54)
* Random Number Generation in bindings.cpp to ensure quanta are truly randomized.
[#54](https://github.com/NESTCollaboration/nestpy/pull/54)
* Binding to Kr83m yields model directly so users can specify explicity deltaT_ns between decay modes.
[#55](https://github.com/NESTCollaboration/nestpy/pull/55)

1.4.4 (2021-02-10)
-----------------
NEST v2.2.0 (no NEST changes)
* PyPi calls improved to compile for linux

1.4.3 (2021-02-08)
-----------------
NEST v2.2.0 (no NEST changes)
* Attempted bug fix (fixed properly in 1.4.4)
* New tutorials directory

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def build_extension(self, ext):

setup(
name='nestpy',
version='1.4.4',
version='1.4.5',
author='Christopher Tunnell',
author_email='[email protected]',
description='Python bindings for the NEST noble element simulations',
Expand Down
2 changes: 1 addition & 1 deletion src/nestpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.4.4'
__version__ = '1.4.5'
__nest_version__ = '2.2.1'

from .nestpy import *
Expand Down

0 comments on commit 26f0465

Please sign in to comment.