Skip to content

Commit

Permalink
Move to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
Tremeschin committed Oct 22, 2024
1 parent 0e5ba27 commit 448a8de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ body:
description: |
- Where are you running the projects from?
options:
- PyPI Wheels (pip, poetry, pdm, rye, etc)
- PyPI Wheels (pip, poetry, pdm, rye, uv, etc)
- Source Code (Install scripts or manual)
- PyAPP Executables (experimental)
- N/A
Expand All @@ -58,7 +58,7 @@ body:
attributes:
label: 🔘 Python version
description: |
- **If running from Source Code**: Rye will use the `.python-version` (default below)
- **If running from Source Code**: uv will use the `.python-version` (default below)
- **If running from PyPI Wheels**: Check the Python version with `python --version`
options:
- Python 3.10
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@ version = "0.0.0"
description = "🎹 World's Smoothest and Most Customizable Piano Roll. Real time, Interactive, Black Midi proof"
authors = [{name="Tremeschin", email="[email protected]"}]
license = "AGPL-3.0"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"broken-source>=0.0.0",
"shaderflow>=0.0.0",
]

[tool.uv.sources]
broken-source = {workspace=true}
shaderflow = {workspace=true}

[project.scripts]
pianola = "Pianola.__main__:main"

[tool.rye]
managed = true

[tool.hatch.build.targets.wheel]
packages = ["Pianola"]

Expand Down

0 comments on commit 448a8de

Please sign in to comment.