Skip to content

Commit

Permalink
Updated smoke test to run against Python 3.9 and fixed a dependency b…
Browse files Browse the repository at this point in the history
…ug with tomli that uncovered
  • Loading branch information
owenlamont committed Dec 21, 2024
1 parent 7a837e5 commit f10e830
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: astral-sh/setup-uv@v3
- run: uv build
- name: Smoke test (wheel)
run: uv run --isolated --no-project -p 3.13 --with dist/*.whl tests/smoke_test.py
run: uv run --isolated --no-project -p 3.9 --with dist/*.whl tests/smoke_test.py
- name: Smoke test (source distribution)
run: uv run --isolated --no-project -p 3.13 --with dist/*.tar.gz tests/smoke_test.py
run: uv run --isolated --no-project -p 3.9 --with dist/*.tar.gz tests/smoke_test.py
- run: uv publish --trusted-publishing always
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ dependencies = [
"inflect>=7.4.0",
"pydantic>=2.10.3",
"rich>=13.9.4",
'tomli; python_version < "3.11"',
"typer>=0.15.1",
]

Expand Down
8 changes: 5 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f10e830

Please sign in to comment.