Skip to content

Commit 9c4785e

Browse files
committed
update
1 parent 85d9167 commit 9c4785e

1 file changed

Lines changed: 99 additions & 0 deletions

File tree

uv/uv.toml

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# ~/.config/uv/uv.toml
2+
# https://docs.astral.sh/uv/reference/settings/
3+
add-bounds = "major"
4+
allow-insecure-host = ["localhost:8080"]
5+
build-constraint-dependencies = []
6+
cache-dir = ".cache/uv"
7+
check-url = "https://pypi.org/simple/"
8+
compile-bytecode = true
9+
concurrent-builds = 10
10+
concurrent-downloads = 10
11+
concurrent-installs = 10
12+
config-settings = { editable_mode = "compat" }
13+
environments = []
14+
exclude-newer = "2006-12-02T02:07:43Z"
15+
extra-index-url = [
16+
"https://download.pytorch.org/whl/cu128",
17+
"https://storage.googleapis.com/jax-releases/jax_cuda_releases.html",
18+
"https://developer.download.nvidia.com/compute/redist"
19+
]
20+
find-links = [
21+
"https://download.pytorch.org/whl/torch_stable.html",
22+
"https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"
23+
]
24+
fork-strategy = "fewest"
25+
26+
[[index]]
27+
url = "https://test.pypi.org/simple"
28+
default = true
29+
30+
index-strategy = "unsafe-best-match"
31+
index-url = "https://pypi.org/simple/"
32+
keyring-provider = "subprocess"
33+
link-mode = "copy"
34+
native-tls = true
35+
no-binary = false
36+
no-binary-package = ["ruff"]
37+
no-build = false
38+
no-build-isolation = true
39+
no-build-isolation-package = []
40+
no-build-package = ["ruff"]
41+
no-cache = false
42+
no-index = false
43+
no-sources = true
44+
prerelease = "allow"
45+
preview = true
46+
publish-url = "https://test.pypi.org/legacy/"
47+
pypy-install-mirror = "https://downloads.python.org/pypy"
48+
python-downloads = "manual"
49+
python-preference = "system"
50+
python-downloads-json-url = "home/phaedrus/.config/uv/python-downloads.json"
51+
python-install-mirror = "https://github.com/astral-sh/python-build-standalone/releases/download"
52+
reinstall = true
53+
reinstall-package = ["ruff"]
54+
required-version = ">=0.5.0"
55+
resolution = "highest"
56+
trusted-publishing = "always"
57+
upgrade = true
58+
upgrade-package = ["ruff"]
59+
60+
[pip]
61+
allow-empty-requirements = true
62+
#all-extras = true
63+
annotation-style = "line"
64+
break-system-packages = true
65+
compile-bytecode = true
66+
config-settings = { editable_mode = "compat" }
67+
#custom-compile-command = "./custom-uv-compile.sh"
68+
emit-build-options = true
69+
emit-index-annotation = true
70+
emit-index-url = true
71+
emit-marker-expression = true
72+
exclude-newer = "2006-12-02T02:07:43Z"
73+
#extra = ["dev", "docs"]
74+
extra-index-url = [
75+
'https://download.pytorch.org/whl/cu128',
76+
"https://storage.googleapis.com/jax-releases/jax_cuda_releases.html",
77+
"https://developer.download.nvidia.com/compute/redist"
78+
]
79+
find-links = [
80+
'https://download.pytorch.org/whl/torch_stable.html',
81+
'https://storage.googleapis.com/jax-releases/jax_cuda_releases.html'
82+
]
83+
fork-strategy = "fewest"
84+
index-strategy = "unsafe-best-match"
85+
keyring-provider = 'subprocess'
86+
link-mode = "clone"
87+
no-build-isolation = false
88+
no-sources = false
89+
no-strip-markers = true
90+
prerelease = "allow"
91+
python = "3.13"
92+
python-platform = "x86_64-unknown-linux-gnu"
93+
python-version = "3.13"
94+
reinstall = true
95+
reinstall-package = ["ruff"]
96+
resolution = "highest"
97+
system = true
98+
torch-backend = "auto"
99+
upgrade = true

0 commit comments

Comments
 (0)