Skip to content

Commit 499112d

Browse files
authored
Add Python 3.12 to test matrix and add classifier to the setup (#139)
1 parent a072544 commit 499112d

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
17+
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.8]
1818

1919
steps:
2020
- uses: actions/checkout@v3

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
17+
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.8]
1818

1919
steps:
2020
- uses: actions/checkout@v3

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
16+
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.8]
1717

1818
steps:
1919
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Work in progress
22

33
- Added typing to API and expose `py.typed`.
4+
- Formally support 3.12
45

56
## 8.0.1
67

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def status(s):
8383
'Programming Language :: Python :: 3.9',
8484
'Programming Language :: Python :: 3.10',
8585
'Programming Language :: Python :: 3.11',
86+
'Programming Language :: Python :: 3.12',
8687
],
8788
entry_points={'console_scripts': ['slugify=slugify.__main__:main']},
8889
)

0 commit comments

Comments
 (0)