We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3530dbc commit 92a92f4Copy full SHA for 92a92f4
pyproject.toml
@@ -23,6 +23,12 @@ members = [
23
"stac_fastapi/*"
24
]
25
26
+[[tool.uv.index]]
27
+name = "testpypi"
28
+url = "https://test.pypi.org/simple/"
29
+publish-url = "https://test.pypi.org/legacy/"
30
+explicit = true
31
+
32
[dependency-groups]
33
dev = [
34
"pytest",
scripts/publish
@@ -38,7 +38,7 @@ do
38
;;
39
40
--test)
41
- TEST_PYPI="--repository testpypi"
+ TEST_PYPI="--index testpypi"
42
shift
43
44
@@ -61,7 +61,7 @@ if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
61
do
62
echo ${PACKAGE_DIR}
63
rm -rf dist
64
- uv build --package PACKAGE_DIR
65
- uv publish --publish-url ${TEST_PYPI}
+ uv build --package ${PACKAGE_DIR}
+ uv publish ${TEST_PYPI}
66
done
67
fi
0 commit comments