-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "hyperoptax"
version = "0.1.0"
description = "Black-box optimisers in JAX."
readme = "README.md"
requires-python = "~=3.12"
dependencies = [
"altair[all]>=5.5.0",
"chex>=0.1.87",
"distrax>=0.1.5",
"flax>=0.8.5",
"jaxtyping>=0.2.36",
"wandb>=0.18.7",
]
[project.optional-dependencies]
cpu = ["jax>=0.4.35"]
metal = ["jax>=0.4.26", "jax-metal>=0.1.0; sys_platform == 'darwin'"]
cuda12 = ["jax[cuda12]>=0.4.35"]
# tpu = ["jax[tpu]>=0.4.35"]
[tool.uv]
# prerelease = "allow"
# find-links = ["https://storage.googleapis.com/jax-releases/libtpu_releases.html"]
conflicts = [
[
{ extra = "cpu" },
{ extra = "metal" },
{ extra = "cuda12" },
# { extra = "tpu" },
],
]
[tool.ruff]
ignore = ["F722"]