Skip to content

Commit

Permalink
Declare support for Python 3.12
Browse files Browse the repository at this point in the history
Also update the CI to test on Python v3.13 prereleases
  • Loading branch information
pR0Ps committed Feb 2, 2024
1 parent 81777e5 commit d35d983
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
push:
branches:
- master
# Run it every month to make sure it still works
schedule:
- cron: '0 0 1 * *'
jobs:
build:
name: tests
Expand All @@ -30,7 +33,8 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "3.12"
- "3.13-dev"
- "pypy2.7"
- "pypy3.6"
- "pypy3.7"
Expand Down Expand Up @@ -65,7 +69,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python v${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bracelogger
A Python library that enables using the brace-style string formatting in log messages.

Features:
- Supports a wide range of Python versions (v2.7 - v3.10)
- Supports a wide range of Python versions (v2.7 - v3.12)
- No dependencies
- Easy to use - no special syntax required
- Easy to transition to from stdlib logging - just change the `logging.getLogger` calls and message
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
Expand Down

0 comments on commit d35d983

Please sign in to comment.