Skip to content

Commit 4e01ccc

Browse files
committed
Updated pyproject.toml
Removed unused testing deps: - ale-py, gymnasium Replaced default torch installation with cpu version only
1 parent 7710c30 commit 4e01ccc

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ testing = [
4040
"clu",
4141
"clu<=0.0.9; python_version<'3.10'",
4242
"einops",
43-
"gymnasium[atari]",
4443
"jaxlib",
4544
"jaxtyping",
4645
"jraph>=0.0.6dev0",
@@ -61,11 +60,10 @@ testing = [
6160
"tensorflow_text>=2.11.0; platform_system!='Darwin' and python_version < '3.13'",
6261
"tensorflow_datasets",
6362
"tensorflow>=2.12.0; python_version<'3.13'", # to fix Numpy np.bool8 deprecation error
64-
"tensorflow>=2.20.0; python_version>='3.13'",
63+
"tensorflow>=2.20.0; python_version>='3.13' and python_version<'3.14'",
6564
"torch",
6665
"treescope>=0.1.1; python_version>='3.10'",
6766
"cloudpickle>=3.0.0",
68-
"ale-py>=0.10.2",
6967
]
7068
docs = [
7169
"sphinx==6.2.1",
@@ -237,3 +235,11 @@ quote-style = "single"
237235
[tool.uv]
238236
# Ignore uv.lock and always upgrade the package to the latest
239237
upgrade-package = ["jax", "jaxlib", "orbax-checkpoint"]
238+
239+
[tool.uv.sources]
240+
torch = { index = "pytorch" }
241+
242+
[[tool.uv.index]]
243+
name = "pytorch"
244+
url = "https://download.pytorch.org/whl/cpu"
245+
explicit = true

0 commit comments

Comments
 (0)