Skip to content

Commit

Permalink
Release numpy upper bound (#125)
Browse files Browse the repository at this point in the history
* Release numpy upper bound for version testing

* Remove upper numpy bound from pyproject.toml

* Drop support for python 3.6

* Bump version to 0.11.2
  • Loading branch information
msschwartz21 authored May 17, 2022
1 parent 89df4b8 commit 73e8861
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -38,7 +38,7 @@ jobs:
python -m pip install --upgrade pip
pip install .[tests] "coveralls<3.3.0"
python setup.py build_ext --inplace
- name: PyTest
run: |
pytest --cov deepcell_toolbox --pep8
Expand Down
2 changes: 1 addition & 1 deletion deepcell_toolbox/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
__description__ = 'The pre- and post-processing functions module for ' \
'deepcell-tf.'
__url__ = 'https://github.com/vanvalenlab/deepcell-toolbox'
__version__ = '0.11.1'
__version__ = '0.11.2'
__author__ = 'Van Valen Lab'
__author_email__ = '[email protected]'
__license__ = 'LICENSE'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
requires = [
"wheel",
"setuptools>=40.8.0",
"numpy>=1.16.6,<1.20.0",
"numpy>=1.16.6",
"Cython>=0.28.0"
]
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run(self, *args, **kwargs):
'opencv-python-headless; python_version >= "3"',
'pandas',
'networkx>=2.1',
'numpy>=1.16.6,<1.20.0',
'numpy>=1.16.6',
'scipy>=1.3.0',
'scikit-image>=0.15.0',
'scikit-learn',
Expand All @@ -114,12 +114,11 @@ def run(self, *args, **kwargs):
long_description_content_type='text/markdown',
packages=find_packages(),
ext_modules=extensions,
setup_requires=['cython>=0.28', 'numpy>=1.16.6,<1.20.0'],
python_requires='>=3.6, <3.10',
setup_requires=['cython>=0.28', 'numpy>=1.16.6'],
python_requires='>=3.7, <3.10',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'])

0 comments on commit 73e8861

Please sign in to comment.