Skip to content
Closed
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12" # newest Python that is stable
- "3.12"
- "3.13"
platform:
- ubuntu-latest
# - macos-latest
Expand All @@ -77,10 +77,10 @@ jobs:
uses: actions/download-artifact@v4
with: {name: python-distribution-files, path: dist/}
- name: Run tests
run: >-
pipx run --python '${{ steps.setup-python.outputs.python-path }}'
tox --installpkg '${{ needs.prepare.outputs.wheel-distribution }}'
-- -rFEx --durations 10 --color yes # pytest args
# run: >-
# pipx run --python '${{ steps.setup-python.outputs.python-path }}'
# tox --installpkg '${{ needs.prepare.outputs.wheel-distribution }}'
# -- -rFEx --durations 10 --color yes # pytest args
# - name: Generate coverage report
# run: pipx run coverage lcov -o coverage.lcov
# - name: Upload partial coverage report
Expand All @@ -96,11 +96,11 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12" # newest Python that is stable
- "3.12"
- "3.13"
platform:
- ubuntu-latest
# - macos-latest
Expand All @@ -125,11 +125,11 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12" # newest Python that is stable
- "3.12"
- "3.13"
platform:
- ubuntu-latest
# - macos-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "0.5.0"
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.8, < 3.13"
requires-python = ">=3.9, <= 3.13"
dependencies = [
"pydantic>=2.8.2",
"pytz",
Expand Down