From 31d6a425e1938b78845a1729d1d68875620e80a5 Mon Sep 17 00:00:00 2001 From: Morgan Schwartz Date: Tue, 17 May 2022 10:33:32 -0700 Subject: [PATCH] Drop support for python 3.6 and bump deepcell-toolbox requirement (#94) * Remove toolbox requirement while testing updates to requirements * Drop support for python 3.6 and bump version to 0.5.7 --- .github/workflows/tests.yaml | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index af7bc8b..98321f8 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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: diff --git a/setup.py b/setup.py index 8bcb6e5..82f2c0e 100644 --- a/setup.py +++ b/setup.py @@ -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' @@ -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', @@ -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'])