Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add python311 and python312 CI support #4320

Merged
merged 2 commits into from
Apr 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
build: add python311 support
ichintanjoshi authored and DawoudSheraz committed Apr 15, 2024
commit 7666f4d34490476a600a82c7ca78d4df6f531529
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['py38']
python-version: ['py38', 'py311']
django-version: ['django42']
db-version: ['mysql80']
pytest-split-group: [1, 2, 3, 4, 5, 6]
4 changes: 2 additions & 2 deletions requirements/local.txt
Original file line number Diff line number Diff line change
@@ -434,7 +434,7 @@ exceptiongroup==1.2.0
# pytest
# trio
# trio-websocket
execnet==2.1.0
execnet==2.1.1
# via pytest-xdist
face==22.0.0
# via glom
@@ -592,7 +592,7 @@ packaging==21.3
# tox
paramiko==3.4.0
# via docker
path==16.12.1
path==16.13.0
# via edx-i18n-tools
pbr==6.0.0
# via stevedore
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-django{42}
envlist = py{38, 311}-django{42}
skipsdist=true

[pytest]