Skip to content

Commit 27f770c

Browse files
authored
Update build environment (#253)
1 parent 49318a5 commit 27f770c

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
tests:
1515

1616
env:
17-
TOXENV: py39
17+
TOXENV: py311
1818

1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Set up Python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
26-
python-version: 3.9
26+
python-version: 3.11
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip setuptools tox build
@@ -39,11 +39,11 @@ jobs:
3939
runs-on: ubuntu-latest
4040

4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343
- name: Set up Python
44-
uses: actions/setup-python@v2
44+
uses: actions/setup-python@v4
4545
with:
46-
python-version: 3.9
46+
python-version: 3.11
4747
- name: Install dependencies
4848
run: |
4949
python -m pip install --upgrade pip setuptools tox build
@@ -59,11 +59,11 @@ jobs:
5959
runs-on: ubuntu-latest
6060

6161
steps:
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v3
6363
- name: Set up Python
64-
uses: actions/setup-python@v1
64+
uses: actions/setup-python@v4
6565
with:
66-
python-version: 3.9
66+
python-version: 3.11
6767
- name: Install dependencies
6868
run: |
6969
python -m pip install --upgrade pip setuptools tox build

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.9
21+
python-version: 3.11
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip setuptools build

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
isolated_build = true
33
skipsdist=True
44
envlist =
5-
py35,py36,py37,py38,py39,lint
5+
py37,py38,py39,py310,py311,lint
66

77
[testenv]
88
deps=

0 commit comments

Comments
 (0)