Skip to content

Commit

Permalink
bump all libraries and restrict python interpeter versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mittagessen committed Oct 18, 2024
1 parent d3a1be9 commit 0cc0cb6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
python-version: [3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions conda/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ build:

requirements:
build:
- python>=3.9,<3.14
- python>=3.9,<3.12
- setuptools>=36.6.0,<70.0.0
- pbr
host:
- python>=3.9,<3.14
- python>=3.9,<3.12
run:
- python>=3.9,<3.14
- python>=3.9,<3.12
- python-bidi~=0.4.0
- lxml
- regex
- requests
- click>=8.1
- numpy~=1.23.0
- numpy~=2.0.0
- pillow>=9.2.0
- scipy~=1.13.0
- jinja2~=3.0
- torchvision
- pytorch~=2.1.0
- pytorch~=2.4.0
- cudatoolkit
- jsonschema
- scikit-image~=0.24.0
Expand All @@ -41,9 +41,9 @@ requirements:
- pyvips
- coremltools
- pyarrow
- lightning~=2.2
- lightning~=2.4.0
- torchmetrics>=1.1.0
- conda-forge::threadpoolctl~=3.4.0
- conda-forge::threadpoolctl~=3.5.0
- albumentations
- rich

Expand Down
10 changes: 5 additions & 5 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ dependencies:
- regex
- requests
- click>=8.1
- numpy~=1.23.0
- numpy~=2.0.0
- pillow~=9.2.0
- scipy~=1.13.0
- jinja2~=3.0
- conda-forge::torchvision-cpu>=0.5.0
- conda-forge::pytorch-cpu~=2.1.0
- conda-forge::pytorch-cpu~=2.4.0
- jsonschema
- scikit-learn~=1.2.1
- scikit-image~=0.24.0
Expand All @@ -23,13 +23,13 @@ dependencies:
- imagemagick>=7.1.0
- pyarrow
- importlib-resources>=1.3.0
- conda-forge::lightning~=2.2.0
- conda-forge::lightning~=2.4.0
- conda-forge::torchmetrics>=1.1.0
- conda-forge::threadpoolctl~=3.4
- conda-forge::threadpoolctl~=3.5.0
- pip
- albumentations
- rich
- setuptools>=36.6.0,<70.0.0
- pip:
- coremltools~=6.0
- coremltools~=8.0
- file:.
8 changes: 4 additions & 4 deletions environment_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- scipy~=1.13.0
- jinja2~=3.0
- conda-forge::torchvision>=0.5.0
- conda-forge::pytorch~=2.1.0
- conda-forge::pytorch~=2.4.0
- cudatoolkit>=9.2
- jsonschema
- scikit-learn~=1.2.1
Expand All @@ -24,13 +24,13 @@ dependencies:
- imagemagick>=7.1.0
- pyarrow
- importlib-resources>=1.3.0
- conda-forge::lightning~=2.2.0
- conda-forge::lightning~=2.4.0
- conda-forge::torchmetrics>=1.1.0
- conda-forge::threadpoolctl~=3.4
- conda-forge::threadpoolctl~=3.5.0
- pip
- albumentations
- rich
- setuptools>=36.6.0,<70.0.0
- pip:
- coremltools~=6.0
- coremltools~=8.0
- file:.
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,29 +38,29 @@ max_line_length = 160
exclude = tests/*

[options]
python_requires = >=3.9,<=3.13.99
python_requires = >=3.9,<3.12
install_requires =
jsonschema
lxml
requests
click>=8.1
numpy~=1.23.0
numpy~=2.0.0
Pillow>=9.2.0
regex
scipy~=1.13.0
protobuf>=3.0.0
coremltools~=6.0
coremltools~=8.0
jinja2~=3.0
python-bidi~=0.4.0
torchvision>=0.5.0
torch~=2.1.0
scikit-learn~=1.2.1
torch~=2.4.0
scikit-learn~=1.5.0
scikit-image~=0.24.0
shapely~=1.8.5
pyarrow
lightning~=2.2.0
lightning~=2.4.0
torchmetrics>=1.1.0
threadpoolctl~=3.4.0
threadpoolctl~=3.5.0
importlib-resources>=1.3.0
rich

Expand Down

0 comments on commit 0cc0cb6

Please sign in to comment.