Skip to content

Commit

Permalink
test: test against CPython 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogdham committed Oct 5, 2024
1 parent dea5b8f commit 98f03f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"
Expand Down Expand Up @@ -54,7 +55,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
- name: Install dependencies
run: pip install tox
- name: Run ${{ matrix.env }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ For the purpose of determining breaking changes:

### :house: Internal

- Add tests for CPython 3.13
- Use CPython 3.13 for misc. tests
- Upgrade dev dependencies

## [1.0.1] - 2024-04-27
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
"Topic :: Text Processing :: Markup :: XML",
]
Expand Down Expand Up @@ -84,7 +85,7 @@ ignore_missing_imports = false
follow_imports = "normal"
mypy_path = "stubs"
# Platform configuration
python_version = 3.12
python_version = 3.13
# Disallow dynamic typing
disallow_any_unimported = true
disallow_any_decorated = true
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tox]
envlist =
py, py38, py39, py310, py311, py312, pypy3
py, py38, py39, py310, py311, py312, py313, pypy3
build, docs, lint, type

[testenv]
Expand Down

0 comments on commit 98f03f4

Please sign in to comment.