Skip to content

Commit

Permalink
Update python to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps committed Jun 3, 2024
1 parent 9b5aeaa commit cfec55e
Show file tree
Hide file tree
Showing 5 changed files with 562 additions and 546 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: |
pip install pipenv==2021.5.29
pip install pipenv
pipenv sync --dev
- name: Setup db
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: pip install isort
Expand Down Expand Up @@ -67,14 +67,14 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9

- name: Setup RabbitMQ
run: ./.github/workflows/scripts/init-rabbitmq.sh

- name: Install dependencies
run: |
pip install pipenv==2021.5.29
pip install pipenv
pipenv sync --dev
- name: Setup db
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim
FROM python:3.9-slim

# Need git for installing aiomysql
RUN apt-get update
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ vulture = "*"
freezegun = "*"

[requires]
python_version = "3.7"
python_version = "3.9"
Loading

0 comments on commit cfec55e

Please sign in to comment.