Skip to content

Commit

Permalink
Bump python to 3.11 and update other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 committed Jun 5, 2024
1 parent a700e3d commit 43cc9d0
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 164 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.11

steps:
- name: Set up repo
Expand Down
10 changes: 5 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ channels = "~=4.1"
daphne = "~=4.1"
gunicorn = "~=22.0"
social-auth-app-django = "~=5.4"
requests = "~=2.31"
requests = "~=2.32"
psutil = "~=5.9"
celery = "~=5.3.5" # Celery v5.4 may stop supporting Python 3.8
celery = "~=5.4.0" # warning: doesn't use semantic versioning (lock minor version)
django-celery-results = "~=2.5"
django-markdownify = "~=0.9" # includes the markdown package
psycopg = "~=3.1"
virtualenv = "~=20.26"
redis = "~=5.0"
channels-redis = "~=4.2"
django-extensions = "~=3.2"
ipython = "~=8.12.3" # IPython follows NEP 29, so v8.13 does not support Python 3.8
ipython = "~=8.24.0" # warning: doesn't use semantic versioning (lock minor version)
mosspy = "~=1.0"
django-debug-toolbar = "~=4.3"
django-debug-toolbar = "~=4.4"
pytest-django = "~=4.8"

[dev-packages]
Expand All @@ -30,4 +30,4 @@ pre-commit = "*"
typing-extensions = "*"

[requires]
python_version = "3.8"
python_version = "3.11"
Loading

0 comments on commit 43cc9d0

Please sign in to comment.