Skip to content

Commit

Permalink
MAINT: Pin numpy to avoid errors due to expired scalar deprecations (#…
Browse files Browse the repository at this point in the history
…630)

* MAINT: pin numpy and increment deepcell-toolbox version

   * Increment deepcell-toolbox minor version.

* REL: increment patch number.
  • Loading branch information
rossbar authored Dec 21, 2022
1 parent e2ff7c7 commit 87a0e07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deepcell/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
__title__ = 'DeepCell'
__description__ = 'Deep learning for single cell image segmentation'
__url__ = 'https://github.com/vanvalenlab/deepcell-tf'
__version__ = '0.12.3'
__version__ = '0.12.4'
__download_url__ = '{}/tarball/{}'.format(__url__, __version__)
__author__ = 'The Van Valen Lab'
__author_email__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
requires = [
"wheel",
"setuptools>=40.8.0",
"numpy>=1.16.6"
"numpy>=1.16.6,<1.24"
]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.16.6
numpy>=1.16.6,<1.24
pydot>=1.4.2,<2
scipy>=1.2.3,<2
scikit-image>=0.14.5
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
long_description=readme,
long_description_content_type='text/markdown',
install_requires=[
'numpy>=1.16.6',
'numpy>=1.16.6,<1.24',
'pydot>=1.4.2,<2',
'scipy>=1.2.3,<2',
'scikit-image>=0.14.5',
Expand All @@ -69,7 +69,7 @@
'matplotlib',
'opencv-python-headless<5',
'deepcell-tracking~=0.6.1',
'deepcell-toolbox~=0.11.2'
'deepcell-toolbox~=0.12.0'
],
extras_require={
'tests': [
Expand Down

0 comments on commit 87a0e07

Please sign in to comment.