Skip to content

Commit

Permalink
fix: lock python max to 3.11 due to incompatibility with uwsgi
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Oct 25, 2023
1 parent df19ffc commit 1273868
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
- uses: extractions/setup-just@v1
- uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.11'
- run: just install lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
pythonversion: ['3.8', '3.9', '3.10', '3.11', '3.12']
pythonversion: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: extractions/setup-just@v1
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: extractions/setup-just@v1
- uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.11'
- uses: ndeloof/[email protected]
- run: just install coverage
- uses: coverallsapp/github-action@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v1.0.3 (2023-10-25)

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

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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'sentry-sdk == 1.*',
'slack_sdk == 3.*',
'sqlitedict == 2.1.*',
'uwsgi == 2.0.22',
'uwsgi == 2.0.22', # TODO: Not compatible with Python 3.12+
'woodchips == 1.*',
]

Expand Down Expand Up @@ -71,5 +71,5 @@
extras_require={
'dev': DEV_REQUIREMENTS,
},
python_requires='>=3.8, <4',
python_requires='>=3.8, <3.12',
)

0 comments on commit 1273868

Please sign in to comment.