Skip to content

Commit

Permalink
Merge pull request #55 from Alschn/chore/update-deps
Browse files Browse the repository at this point in the history
Bump most of dependencies including Django 5 and psycopg 3
  • Loading branch information
Alschn authored Apr 28, 2024
2 parents cabcc2e + 6d9e13c commit fe067bb
Show file tree
Hide file tree
Showing 4 changed files with 364 additions and 317 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
python-version: "3.10"

- name: psycopg2 prerequisites
- name: Install psycopg prerequisites
run: sudo apt-get install libpq-dev

- name: Install pipenv
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: |
pipenv install --deploy --dev
pipenv sync --dev --python 3.10 --verbose
- name: Django tests
run: |
Expand Down
50 changes: 25 additions & 25 deletions backend/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,40 +4,40 @@ verify_ssl = true
name = "pypi"

[packages]
django = "==4.2.4"
djangorestframework = "==3.14.0"
django-cors-headers = "==4.2.0"
django-stubs-ext = "==4.2.2"
djangorestframework-stubs = "==3.14.2"
django = "==5.0.4"
djangorestframework = "==3.15.1"
django-cors-headers = "==4.3.1"
django-stubs-ext = "==4.2.7"
djangorestframework-stubs = "==3.14.5"
django-extensions = "==3.2.3"
drf-extra-fields = "==3.7.0"
django-filter = "==23.2"
django-filter = "==24.2"
django-ordered-model = "==3.7.4"
django-sesame = "==3.2.1"
pillow = "==10.0.0"
django-sesame = "==3.2.2"
pillow = "==10.3.0"
dj-rest-auth = "==4.0.1"
django-allauth = "==0.54.0"
djangorestframework-simplejwt = "==5.3.0"
django-import-export = "==3.2.0"
channels = "==4.0.0"
channels-redis = "==4.1.0"
redis = "==5.0.0"
django-q2 = "==1.5.5"
python-dotenv = "==1.0.0"
psycopg2 = "==2.9.7"
djangorestframework-simplejwt = "==5.3.1"
django-import-export = "==3.3.8"
channels = "==4.1.0"
channels-redis = "==4.2.0"
redis = "==5.0.4"
django-q2 = "==1.6.2"
python-dotenv = "==1.0.1"
psycopg = {extras = ["binary"], version = "==3.1.18"}
dj-database-url = "==2.1.0"
whitenoise = "==6.5.0"
daphne = "==4.0.0"
gunicorn = "==21.2.0"
whitenoise = "==6.6.0"
daphne = "==4.1.2"
gunicorn = "==22.0.0"
openpyxl = "==3.1.2"
drf-spectacular = "==0.26.4"
django-storages = "==1.13.2"
boto3 = "==1.28.40"
django-countries = "==7.5.1"
drf-spectacular = "==0.27.2"
django-storages = "==1.14.2"
boto3 = "==1.34.93"
django-countries = "==7.6.1"

[dev-packages]
coverage = "==7.3.0"
freezegun = "==1.2.2"
coverage = "==7.5.0"
freezegun = "==1.5.0"
factory-boy = "==3.3.0"
ruff = "==0.4.2"

Expand Down
Loading

0 comments on commit fe067bb

Please sign in to comment.