Skip to content

Commit baec0b2

Browse files
authored
Merge pull request #257 from rnc/RUNNER
Update runners
2 parents ef0939a + 6ac643a commit baec0b2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/squash.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ on:
1010

1111
jobs:
1212
build-docker-24:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
@@ -35,11 +35,11 @@ jobs:
3535
echo "Running tests for Python version $PV ( ${PV/./} )"
3636
make test-py"${PV/./}"
3737
build-docker-25:
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-22.04
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
42+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
4343
steps:
4444
- uses: actions/checkout@v4
4545
- name: Set up Python ${{ matrix.python-version }}
@@ -51,7 +51,7 @@ jobs:
5151
for pkg in containerd runc; do sudo apt-get remove $pkg; done
5252
sudo apt-get update
5353
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
54-
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
54+
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu jammy stable"
5555
apt-cache policy docker-ce
5656
sudo apt-get install docker-ce docker-ce-cli containerd.io
5757
pip install "tox<4.0.0" setuptools
@@ -65,11 +65,11 @@ jobs:
6565
echo "Running tests for Python version $PV ( ${PV/./} )"
6666
make test-py"${PV/./}"
6767
build-podman-3:
68-
runs-on: ubuntu-20.04
68+
runs-on: ubuntu-22.04
6969
strategy:
7070
fail-fast: false
7171
matrix:
72-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
72+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
7373
steps:
7474
- uses: actions/checkout@v4
7575
- name: Set up Python ${{ matrix.python-version }}

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ CIRCLE_NODE_INDEX ?= 0
33
test: prepare
44
tox -- tests
55

6-
test-py36: prepare
7-
tox -e py36 -- tests
8-
96
test-py37: prepare
107
tox -e py37 -- tests
118

@@ -24,6 +21,9 @@ test-py311: prepare
2421
test-py312: prepare
2522
tox -e py312 -- tests
2623

24+
test-py313: prepare
25+
tox -e py313 -- tests
26+
2727
test-unit: prepare
2828
tox -- tests/test_unit*
2929

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,py310,py311,py312
2+
envlist = py37,py38,py39,py310,py311,py312,py313
33

44
[testenv]
55
passenv=

0 commit comments

Comments
 (0)