mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Refs #33173 -- Used Python 3.11 for GitHub actions.
This commit is contained in:
parent
80777d30b3
commit
2e82fa54ca
4 changed files with 5 additions and 5 deletions
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: 'docs/requirements.txt'
|
cache-dependency-path: 'docs/requirements.txt'
|
||||||
- run: python -m pip install -r docs/requirements.txt
|
- run: python -m pip install -r docs/requirements.txt
|
||||||
|
|
4
.github/workflows/linters.yml
vendored
4
.github/workflows/linters.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
- run: python -m pip install flake8
|
- run: python -m pip install flake8
|
||||||
- name: flake8
|
- name: flake8
|
||||||
# Pinned to v1.0.2.
|
# Pinned to v1.0.2.
|
||||||
|
@ -44,7 +44,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
- run: python -m pip install isort
|
- run: python -m pip install isort
|
||||||
- name: isort
|
- name: isort
|
||||||
# Pinned to v1.0.2.
|
# Pinned to v1.0.2.
|
||||||
|
|
2
.github/workflows/schedule_tests.yml
vendored
2
.github/workflows/schedule_tests.yml
vendored
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- '3.8'
|
- '3.8'
|
||||||
- '3.9'
|
- '3.9'
|
||||||
- '3.10'
|
- '3.10'
|
||||||
- '3.11-dev'
|
- '3.11'
|
||||||
name: Windows, SQLite, Python ${{ matrix.python-version }}
|
name: Windows, SQLite, Python ${{ matrix.python-version }}
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- '3.10'
|
- '3.11'
|
||||||
name: Windows, SQLite, Python ${{ matrix.python-version }}
|
name: Windows, SQLite, Python ${{ matrix.python-version }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue