Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1273868

Browse files
committed
fix: lock python max to 3.11 due to incompatibility with uwsgi
1 parent df19ffc commit 1273868

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- uses: extractions/setup-just@v1
2323
- uses: actions/setup-python@v4
2424
with:
25-
python-version: '3.12'
25+
python-version: '3.11'
2626
- run: just install lint
2727
test:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
pythonversion: ['3.8', '3.9', '3.10', '3.11', '3.12']
31+
pythonversion: ['3.8', '3.9', '3.10', '3.11']
3232
steps:
3333
- uses: actions/checkout@v3
3434
- uses: extractions/setup-just@v1
@@ -45,7 +45,7 @@ jobs:
4545
- uses: extractions/setup-just@v1
4646
- uses: actions/setup-python@v4
4747
with:
48-
python-version: '3.12'
48+
python-version: '3.11'
4949
- uses: ndeloof/[email protected]
5050
- run: just install coverage
5151
- uses: coverallsapp/github-action@v2

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## v1.0.3 (2023-10-25)
44

55
- Swaps the deprecated `slackclient` for the new `slack_sdk`, no user impact expected
6+
- Locks max Python version to 3.11 as `uwsgi` is not yet compatible with the new Python 3.12
67

78
## v1.0.2 (2023-10-09)
89

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'sentry-sdk == 1.*',
2525
'slack_sdk == 3.*',
2626
'sqlitedict == 2.1.*',
27-
'uwsgi == 2.0.22',
27+
'uwsgi == 2.0.22', # TODO: Not compatible with Python 3.12+
2828
'woodchips == 1.*',
2929
]
3030

@@ -71,5 +71,5 @@
7171
extras_require={
7272
'dev': DEV_REQUIREMENTS,
7373
},
74-
python_requires='>=3.8, <4',
74+
python_requires='>=3.8, <3.12',
7575
)

0 commit comments

Comments
 (0)