Skip to content

Commit

Permalink
Support Python 3.9 (#61)
Browse files Browse the repository at this point in the history
* Add support for Python 3.9

* Bump the version.

* Fix test command for windows.
  • Loading branch information
willgraf authored Jul 7, 2021
1 parent cbb6b42 commit 35ef710
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
- name: PyTest
run: |
pytest --cov deepcell_tracking --pep8
python -m pytest --cov deepcell_tracking --pep8
- name: Coveralls
if: env.COVERALLS_REPO_TOKEN != null
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
readme = f.read()


VERSION = '0.4.1'
VERSION = '0.4.2'
NAME = 'DeepCell_Tracking'
DESCRIPTION = 'Tracking cells and lineage with deep learning.'
LICENSE = 'LICENSE'
Expand Down Expand Up @@ -77,4 +77,5 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'])
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'])

0 comments on commit 35ef710

Please sign in to comment.