Skip to content

Commit

Permalink
Update requirements (#78)
Browse files Browse the repository at this point in the history
* Synchronize with deepcell pins and rm upper bounds.

* Unpin trackpy.

* Add Python 3.10 to testing matrix.
  • Loading branch information
rossbar authored Jan 27, 2024
1 parent 6e0c73c commit b2d6e51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
pandas>=1,<2
pandas<2
numpy>=1.16.6
scipy>=1.2.3,<2
scikit-image>=0.14.5
scikit-learn>=0.20.4,<1
scikit-image>=0.19.3
scikit-learn
tensorflow~=2.8.0 # manually matched to deepcell-tf
jupyter>=1.0.0,<2
networkx>=2.1
opencv-python-headless<5
deepcell>=0.12.7
trackpy~=0.4.2
trackpy
tqdm
plotly
statsmodels
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@
long_description=readme,
long_description_content_type='text/markdown',
install_requires=[
'pandas>=1,<2',
'pandas<2',
'numpy>=1.16.6',
'scipy>=1.2.3,<2',
'scikit-image>=0.14.5',
'scikit-learn>=0.20.4,<1',
'scikit-image>=0.19.3',
'scikit-learn',
'tensorflow~=2.8.0',
'jupyter>=1.0.0,<2',
'networkx>=2.1',
'opencv-python-headless<5',
'deepcell>=0.12.7',
'tqdm',
'trackpy~=0.4.2',
'trackpy',
'plotly',
'statsmodels',
'torch',
Expand Down

0 comments on commit b2d6e51

Please sign in to comment.