Skip to content

Commit a205d28

Browse files
committed
Add support for Python 3.12
1 parent dfd4c7f commit a205d28

File tree

7 files changed

+12
-28
lines changed

7 files changed

+12
-28
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3131

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@v2
33+
uses: github/codeql-action/init@bad341350a2f5616f9e048e51360cedc49181ce8 # v2.15.1
3434
with:
3535
languages: ${{ matrix.language }}
3636
queries: +security-and-quality
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v2
39+
uses: github/codeql-action/analyze@bad341350a2f5616f9e048e51360cedc49181ce8 # v2.15.1

.github/workflows/continous-integration.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ on:
44
pull_request:
55
push:
66
branches: master
7+
workflow_dispatch:
8+
79
jobs:
810
test:
911
runs-on: ubuntu-latest
1012
strategy:
1113
matrix:
12-
python: ['3.8', '3.9', '3.10', '3.11']
14+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
1315
steps:
14-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1517
- name: Set up Python ${{ matrix.python }}
16-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
1719
with:
1820
python-version: ${{ matrix.python }}
1921
- name: Install dependencies

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/labeler@v3
16+
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
1717
with:
1818
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/trello.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## ?.?.?
22

3+
* Added support for Python 3.12.
34
* Dropped support for Python 3.7 which has reached end of life. Python 3.8+ is
45
now required.
56

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.9",
4343
"Programming Language :: Python :: 3.10",
4444
"Programming Language :: Python :: 3.11",
45+
"Programming Language :: Python :: 3.12",
4546
"License :: OSI Approved :: MIT License",
4647
"Operating System :: OS Independent",
4748
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,flake8,black,mypy
2+
envlist = py38,py39,py310,py311,py312,flake8,black,mypy
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)