-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from SFDigitalServices/chore/python-3.12
chore: bump python to 3.12
- Loading branch information
Showing
10 changed files
with
602 additions
and
955 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,17 @@ | |
# Check https://circleci.com/docs/2.0/language-python/ for more details | ||
# | ||
version: 2 | ||
|
||
orbs: | ||
# See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/python | ||
python: circleci/[email protected] | ||
|
||
jobs: | ||
build: | ||
docker: | ||
# specify the version you desire here | ||
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` | ||
- image: circleci/python:3.7.2 | ||
- image: cimg/python:3.12.4 | ||
environment: | ||
DATABASE_URL: postgresql://[email protected]:5432/circle_test | ||
REDIS_URL: redis://[email protected]:6379 | ||
|
@@ -38,7 +43,6 @@ jobs: | |
- run: | ||
name: install dependencies | ||
command: | | ||
sudo pip install pipenv | ||
pipenv install --dev | ||
- save_cache: | ||
|
@@ -84,4 +88,4 @@ jobs: | |
- store_artifacts: | ||
path: test-reports | ||
destination: test-reports | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,4 @@ redis = "*" | |
importlib-metadata = "<5.0" | ||
|
||
[requires] | ||
python_version = "3.7" | ||
python_version = "3.12" |
Oops, something went wrong.