Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ jobs:
uses: community-of-python/community-workflow/.github/workflows/preset.yml@main
with:
python-version: '["3.10","3.11","3.12","3.13"]'
os: '["ubuntu-latest"]'
secrets: inherit
1 change: 1 addition & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ test *args:

publish:
rm -rf dist
uv version $GITHUB_REF_NAME
uv build
uv publish --token $PYPI_TOKEN
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
"Typing :: Typed",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version"]
version = "0"
dependencies = [
"fastapi>=0.100",
]
Expand All @@ -38,11 +38,12 @@ dev-dependencies = [
]

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
requires = ["uv_build"]
build-backend = "uv_build"

[tool.hatch.version]
source = "vcs"
[tool.uv.build-backend]
module-name = "fast_version"
module-root = ""

[tool.mypy]
python_version = "3.10"
Expand Down