We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38a04b5 + 6d56dac commit 39af18bCopy full SHA for 39af18b
2 files changed
.github/workflows/ci_pkg-install.yml
@@ -56,8 +56,8 @@ jobs:
56
57
- name: Try installing
58
run: |
59
- uv run --with "$(python -c "import glob; print(glob.glob('dist/*.whl')[0])")" \
60
- python -c "import challenge_xyz ; print(challenge_xyz.__version__)"
+ uv run --with "$(python -c 'import glob; print(glob.glob("dist/*.whl")[0])')" \
+ python -c "import challenge_xyz; print(challenge_xyz.__version__)"
61
62
- name: Try editable install
63
run: uv run --with-editable . python -c "import challenge_xyz ; print(challenge_xyz.__version__)"
pyproject.toml
@@ -15,7 +15,7 @@ keywords = [
15
"machine-learning",
16
"template",
17
]
18
-license = "MIT"
+license = { file = "LICENSE" }
19
license-files = [
20
"LICENSE",
21
0 commit comments