Skip to content

Commit

Permalink
Merge pull request #165 from hugovk/master
Browse files Browse the repository at this point in the history
Add support for Python 3.13
  • Loading branch information
micheles authored Oct 8, 2024
2 parents def9f60 + 7e0c50d commit 519cc71
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand All @@ -30,6 +30,6 @@ jobs:
python -m pip install --upgrade pip
python -m pip install codespell flake8
python -m pip install -e .
- run: codespell --ignore-words-list="ba,claus,vas" --quiet-level=2
- run: codespell --ignore-words-list="assertIn,ba,claus,vas" --quiet-level=2
- run: flake8 . --count --ignore=E122,E226,E265,E741,E742 --max-complexity=22 --max-line-length=124 --show-source --statistics
- run: python src/tests/test.py -v
2 changes: 1 addition & 1 deletion docs/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
|---|---|
|E-mail | [email protected]|
|Version| 5.1.1 (2022-01-07)|
|Supports| Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12|
|Supports| Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13|
|Download page| https://pypi.org/project/decorator/5.1.1|
|Installation| ``pip install decorator``|
|License | BSD license|
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
Expand Down

0 comments on commit 519cc71

Please sign in to comment.