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 13, 2024
1 parent 6b41dda commit 457a37d
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 217 deletions.
4 changes: 2 additions & 2 deletions .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 Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.11

steps:
- name: Set up repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.11

steps:
- name: Checkout repository
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 @@ -35,4 +35,4 @@ sphinx-copybutton = "*"
sphinxcontrib-django = "*"

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

0 comments on commit 457a37d

Please sign in to comment.