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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.13"

- name: Install dependencies
run: |
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.13"

- name: Install dependencies
run: |
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
python_version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -33,13 +33,7 @@ jobs:
run: python -m pytest --cov-fail-under=90

- name: Verify dependencies
# Jinja, https://data.safetycli.com/v/70612/97c
# urllib3, https://data.safetycli.com/v/77744/97c, only when using python 3.8. Consider upgrading.
# setuptools, https://data.safetycli.com/v/76752/97c, only when using python 3.8. Consider upgrading.
# regex, https://data.safetycli.com/v/78558/97c, only when using python 3.8. Consider upgrading.
# pip, https://data.safetycli.com/v/79883/97c, only when using python 3.8. Consider upgrading.
# authlib, https://data.safetycli.com/v/79756/97c, only when using python 3.8. Consider upgrading.
run: python -m safety check --ignore 70612 --ignore 77744 --ignore 77745 --ignore 76752 --ignore 78558 --ignore 79883 --ignore 79756
run: python -m safety check

- name: Verify code style
run: python -m flake8 -v
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ uv tool install tox --with tox-uv
Install Python versions:

```bash
uv python install 3.8 3.9 3.10 3.11 3.12
uv python install 3.10 3.11 3.12 3.13
```

To run tests for all Python versions:
Expand Down
Loading