Skip to content

Commit

Permalink
Django 4.2 support (#76)
Browse files Browse the repository at this point in the history
* fix: django 4.2 upgrade

* chore: regular upgrade.

* chore: removed django40 from workflow.

* chore: fixing coverage.

* chore: fixing coverage.

* chore: bump the version.

* fix: remove django 4.0 classifier

* fix: remove django 4.0 classifier

* fix: remove django 4.0 classifier

---------

Co-authored-by: Salman Nawaz <[email protected]>
Co-authored-by: Awais Qureshi <[email protected]>
  • Loading branch information
3 people authored Jul 24, 2023
1 parent 21ee9e8 commit 47f42c5
Show file tree
Hide file tree
Showing 11 changed files with 169 additions and 209 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [quality, django32, django40]
toxenv: [quality, django32, django42]

steps:
- uses: actions/checkout@v2
Expand All @@ -39,7 +39,7 @@ jobs:
run: tox

- name: Run Coverage
if: matrix.python-version == '3.8' && matrix.toxenv=='django32'
if: matrix.python-version == '3.8' && matrix.toxenv=='django42'
uses: codecov/codecov-action@v3
with:
flags: unittests
Expand Down
2 changes: 1 addition & 1 deletion milestones/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""


__version__ = '0.4.0'
__version__ = '0.5.0'
22 changes: 12 additions & 10 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# make upgrade
#
asgiref==3.5.2
asgiref==3.7.2
# via django
django==3.2.13
django==3.2.20
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/base.in
# django-model-utils
django-model-utils==4.2.0
django-model-utils==4.3.1
# via -r requirements/base.in
edx-opaque-keys==2.3.0
# via -r requirements/base.in
pbr==5.9.0
pbr==5.11.1
# via stevedore
pymongo==3.12.3
pymongo==3.13.0
# via edx-opaque-keys
pytz==2022.1
pytz==2023.3
# via django
six==1.16.0
# via -r requirements/base.in
sqlparse==0.4.2
sqlparse==0.4.4
# via django
stevedore==3.5.0
stevedore==5.1.0
# via edx-opaque-keys
typing-extensions==4.7.1
# via asgiref
39 changes: 12 additions & 27 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,48 +1,33 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# make upgrade
#
certifi==2022.5.18.1
# via requests
charset-normalizer==2.0.12
# via requests
coverage==6.4.1
# via codecov
distlib==0.3.4
distlib==0.3.6
# via virtualenv
filelock==3.7.1
filelock==3.12.2
# via
# tox
# virtualenv
idna==3.3
# via requests
packaging==21.3
packaging==23.1
# via tox
platformdirs==2.5.2
platformdirs==3.8.1
# via virtualenv
pluggy==1.0.0
pluggy==1.2.0
# via tox
py==1.11.0
# via tox
pyparsing==3.0.9
# via packaging
requests==2.27.1
# via codecov
six==1.16.0
# via
# tox
# virtualenv
toml==0.10.2
# via tox
tox==3.25.0
tomli==2.0.1
# via tox
tox==3.28.0
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/ci.in
# tox-battery
tox-battery==0.6.1
# via -r requirements/ci.in
urllib3==1.26.9
# via requests
virtualenv==20.14.1
virtualenv==20.23.1
# via tox
Loading

0 comments on commit 47f42c5

Please sign in to comment.