Skip to content

Commit

Permalink
feat: test and support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
GabDug committed Oct 29, 2024
1 parent 6b39973 commit 1a7b548
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
# Empty is latest, head is latest from GitHub
pdm-version: [""]

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ For a list of planned features, see [the roadmap](ROADMAP.md).

## Unreleased

- Test using Python 3.13

## 0.3.1 - 2024-04-03

- *CHANGED* `LOGGIA_SUB_LEVEL` and [set_logger_level][loggia.conf.LoggerConfiguration.set_logger_level] now accept a lowercase strings and ints as well as uppercase strings.
- *FIXED* `ddtrace` was imported even with `DD_TRACE_ENABLED=false`

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{9,10,11,12}-loguru{0,1}-ddtrace{0,1}
envlist = py3{9,10,11,12,13}-loguru{0,1}-ddtrace{0,1}
isolated_build = True ; This is required for a pyproject.toml based project.

[testenv]
Expand Down

0 comments on commit 1a7b548

Please sign in to comment.