Skip to content

Commit 519cc71

Browse files
authored
Merge pull request #165 from hugovk/master
Add support for Python 3.13
2 parents def9f60 + 7e0c50d commit 519cc71

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/python-package.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
19+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
allow-prereleases: true
@@ -30,6 +30,6 @@ jobs:
3030
python -m pip install --upgrade pip
3131
python -m pip install codespell flake8
3232
python -m pip install -e .
33-
- run: codespell --ignore-words-list="ba,claus,vas" --quiet-level=2
33+
- run: codespell --ignore-words-list="assertIn,ba,claus,vas" --quiet-level=2
3434
- run: flake8 . --count --ignore=E122,E226,E265,E741,E742 --max-complexity=22 --max-line-length=124 --show-source --statistics
3535
- run: python src/tests/test.py -v

docs/documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
|---|---|
55
|E-mail | michele.simionato@gmail.com|
66
|Version| 5.1.1 (2022-01-07)|
7-
|Supports| Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12|
7+
|Supports| Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13|
88
|Download page| https://pypi.org/project/decorator/5.1.1|
99
|Installation| ``pip install decorator``|
1010
|License | BSD license|

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
'Programming Language :: Python :: 3.10',
3232
'Programming Language :: Python :: 3.11',
3333
'Programming Language :: Python :: 3.12',
34+
'Programming Language :: Python :: 3.13',
3435
'Programming Language :: Python :: Implementation :: CPython',
3536
'Topic :: Software Development :: Libraries',
3637
'Topic :: Utilities'],

0 commit comments

Comments
 (0)