Skip to content

Commit

Permalink
Update to Python 3.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Jan 30, 2024
1 parent 5659e0e commit 820130a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 15 deletions.
11 changes: 1 addition & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ executors:
parameters: &python_parameters
python_version:
description: "python version tag"
default: "3.10.13"
default: "3.11.7"
type: string
variant:
description: "image variant"
Expand Down Expand Up @@ -680,15 +680,6 @@ workflows:
allow_fail: true
filters: *default_filters

- python_job:
name: python 3.11 test
python_version: "3.11"
command: pytest
pytest_fail_fast: true
test_results_filename: pytest-python-3-11.xml
allow_fail: true
filters: *default_filters

- python_job:
name: python 3.12 test
python_version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pending-strings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python 3
uses: actions/[email protected]
with:
python-version: '3.10'
python-version: '3.11'
cache: 'pip'
- name: Install Python dependencies
run: |
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.10.13
FROM python:3.11.7

ARG CIRCLE_BRANCH
ARG CIRCLE_SHA1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Please refer to our [coding standards](docs/coding-standards.md) for code styles

### Requirements

- python 3.10 (we recommend [virtualenv](https://docs.python-guide.org/dev/virtualenvs/))
- python 3.11 (we recommend [virtualenv](https://docs.python-guide.org/dev/virtualenvs/))
- PostgreSQL - even if you are using sqlite for development, requirements.txt installs
psycopg2 which [requires libpq](https://www.psycopg.org/docs/install.html#build-prerequisites) and Python header files.
The following should work:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
plugins = ["mypy_django_plugin.main"]
mypy_path = "$MYPY_CONFIG_FILE_DIR/mypy_stubs"
exclude = "env"
python_version = "3.10"
python_version = "3.11"
show_error_codes = true
strict = true

Expand Down
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.10.13
python-3.11.7

0 comments on commit 820130a

Please sign in to comment.