Skip to content

Commit 4636f01

Browse files
authored
Merge pull request #171 from NeuralEnsemble/experimental
numpy should be an explicit requirement
2 parents a8fc4ae + fb81192 commit 4636f01

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

neuroml/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
__version__: str = "0.5.1"
10+
__version__: str = "0.5.2"
1111
__version_info__: tuple = tuple(int(i) for i in __version__.split("."))
1212

1313

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818
description="A Python library for working with NeuroML descriptions of neuronal models",
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
21-
install_requires=["lxml", "six", "networkx"],
21+
install_requires=["lxml", "six", "networkx", "numpy"],
2222
tests_require=["pytest"],
2323
extras_require={
2424
"full": [
2525
"cython",
26-
"numpy",
2726
"numexpr",
2827
"tables>=3.3.0",
2928
]

0 commit comments

Comments
 (0)