Skip to content

Commit

Permalink
Merge pull request #160 from hugovk/master
Browse files Browse the repository at this point in the history
Add support for Python 3.12
  • Loading branch information
micheles authored Aug 23, 2023
2 parents bd49b3d + bdf84e1 commit 4153d8a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
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.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12|
|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 @@ -32,6 +32,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',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
Expand Down
2 changes: 1 addition & 1 deletion src/tests/documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
|---|---|
|E-mail | [email protected]|
|Version| $VERSION ($DATE)|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12|
|Download page| https://pypi.org/project/decorator/$VERSION|
|Installation| ``pip install decorator``|
|License | BSD license|
Expand Down

0 comments on commit 4153d8a

Please sign in to comment.