Skip to content

Commit

Permalink
Merge pull request #171 from NeuralEnsemble/experimental
Browse files Browse the repository at this point in the history
numpy should be an explicit requirement
  • Loading branch information
pgleeson authored May 19, 2023
2 parents a8fc4ae + fb81192 commit 4636f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neuroml/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""


__version__: str = "0.5.1"
__version__: str = "0.5.2"
__version_info__: tuple = tuple(int(i) for i in __version__.split("."))


Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@
description="A Python library for working with NeuroML descriptions of neuronal models",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["lxml", "six", "networkx"],
install_requires=["lxml", "six", "networkx", "numpy"],
tests_require=["pytest"],
extras_require={
"full": [
"cython",
"numpy",
"numexpr",
"tables>=3.3.0",
]
Expand Down

0 comments on commit 4636f01

Please sign in to comment.