Skip to content

Commit

Permalink
build: adding python3.11 and 3.12 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Feb 19, 2024
1 parent a15994a commit 7a4b19d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["py38"]
python-version: ["py38", "py3.11", "py3.12"]
django-version: ["django42"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
Expand Down
1 change: 0 additions & 1 deletion requirements/all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ mypy-extensions==1.0.0
# via
# -r requirements/dev.txt
# black
mysqlclient==2.2.3
# via
# -r requirements/dev.txt
# -r requirements/production.txt
Expand Down
1 change: 0 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ markdown==3.5.2
# via -r requirements/base.in
markupsafe==2.1.5
# via jinja2
mysqlclient==2.2.3
# via -r requirements/base.in
newrelic==9.6.0
# via
Expand Down
1 change: 0 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ mypy-extensions==1.0.0
# via
# -r requirements/test.txt
# black
mysqlclient==2.2.3
# via -r requirements/test.txt
newrelic==9.6.0
# via
Expand Down
1 change: 0 additions & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ markupsafe==2.1.5
# via
# -r requirements/base.txt
# jinja2
mysqlclient==2.2.3
# via -r requirements/base.txt
newrelic==9.6.0
# via
Expand Down
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,312}-django{42}
skipsdist = true

[pytest]
Expand Down

0 comments on commit 7a4b19d

Please sign in to comment.