Skip to content

Commit

Permalink
Drop support for python 3.6 and bump deepcell-toolbox requirement (#94)
Browse files Browse the repository at this point in the history
* Remove toolbox requirement while testing updates to requirements

* Drop support for python 3.6 and bump version to 0.5.7
  • Loading branch information
msschwartz21 committed May 17, 2022
1 parent ec3fd4e commit 31d6a42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
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 Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -37,7 +37,7 @@
readme = f.read()


VERSION = '0.5.6'
VERSION = '0.5.7'
NAME = 'DeepCell_Tracking'
DESCRIPTION = 'Tracking cells and lineage with deep learning.'
LICENSE = 'LICENSE'
Expand All @@ -61,7 +61,8 @@
'pandas',
'scipy',
'scikit-image>=0.14.5',
'deepcell-toolbox~=0.10.0'],
'deepcell-toolbox~=0.11.2'
],
extras_require={
'tests': ['pytest<6',
'pytest-pep8',
Expand All @@ -73,7 +74,6 @@
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 31d6a42

Please sign in to comment.