Skip to content

Commit

Permalink
pin setuptools to <70
Browse files Browse the repository at this point in the history
until we can upgrade to pytorch 2.3 when lightning has a new release.
  • Loading branch information
mittagessen committed May 27, 2024
1 parent 8003dc0 commit 0309bc1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build:
requirements:
build:
- python>=3.8,<3.12
- setuptools
- setuptools>=36.6.0,<70.0.0
- pbr
host:
- python>=3.8,<3.12
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ dependencies:
- pip
- albumentations
- rich
- setuptools>=36.6.0,<70.0.0
- pip:
- coremltools~=6.0
- file:.
1 change: 1 addition & 0 deletions environment_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies:
- pip
- albumentations
- rich
- setuptools>=36.6.0,<70.0.0
- pip:
- coremltools~=6.0
- file:.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]

[build-system]
requires = ["pbr>=5.7.0", "setuptools>=36.6.0", "wheel"]
requires = ["pbr>=5.7.0", "setuptools>=36.6.0,<70.0.0", "wheel"]
build-backend = "pbr.build"

0 comments on commit 0309bc1

Please sign in to comment.