Skip to content

Commit 910c460

Browse files
brienseaArtem Krivonos
authored and
Artem Krivonos
committed
Add python3.10.
1 parent 5fb70d8 commit 910c460

8 files changed

+13
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can include this package in your preferred base image to make that base imag
1010

1111
## Requirements
1212
The Python Runtime Interface Client package currently supports Python versions:
13-
- 3.7.x up to and including 3.9.x
13+
- 3.7.x up to and including 3.10.x
1414

1515
## Usage
1616

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def read_requirements(req="base.txt"):
9090
"Programming Language :: Python :: 3.7",
9191
"Programming Language :: Python :: 3.8",
9292
"Programming Language :: Python :: 3.9",
93+
"Programming Language :: Python :: 3.10",
9394
"License :: OSI Approved :: Apache Software License",
9495
"Operating System :: OS Independent",
9596
],

tests/integration/codebuild/buildspec.os.alpine.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ batch:
2222
- "3.7"
2323
- "3.8"
2424
- "3.9"
25+
- "3.10"
2526
phases:
2627
pre_build:
2728
commands:

tests/integration/codebuild/buildspec.os.amazonlinux.1.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ batch:
2020
- "3.7"
2121
- "3.8"
2222
- "3.9"
23+
- "3.10"
2324
phases:
2425
pre_build:
2526
commands:
@@ -98,4 +99,4 @@ phases:
9899
- docker rm --force "${TEST_NAME}-app" || true
99100
- docker stop "${TEST_NAME}-tester" || true
100101
- docker rm --force "${TEST_NAME}-tester" || true
101-
- docker network rm "${TEST_NAME}-network" || true
102+
- docker network rm "${TEST_NAME}-network" || true

tests/integration/codebuild/buildspec.os.amazonlinux.2.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ batch:
2020
- "3.7"
2121
- "3.8"
2222
- "3.9"
23+
- "3.10"
2324
phases:
2425
pre_build:
2526
commands:
@@ -107,4 +108,4 @@ phases:
107108
- docker rm --force "${TEST_NAME}-app" || true
108109
- docker stop "${TEST_NAME}-tester" || true
109110
- docker rm --force "${TEST_NAME}-tester" || true
110-
- docker network rm "${TEST_NAME}-network" || true
111+
- docker network rm "${TEST_NAME}-network" || true

tests/integration/codebuild/buildspec.os.centos.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ batch:
2020
- "3.7"
2121
- "3.8"
2222
- "3.9"
23+
- "3.10"
2324
phases:
2425
pre_build:
2526
commands:
@@ -107,4 +108,4 @@ phases:
107108
- docker rm --force "${TEST_NAME}-app" || true
108109
- docker stop "${TEST_NAME}-tester" || true
109110
- docker rm --force "${TEST_NAME}-tester" || true
110-
- docker network rm "${TEST_NAME}-network" || true
111+
- docker network rm "${TEST_NAME}-network" || true

tests/integration/codebuild/buildspec.os.debian.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ batch:
2121
- "3.7"
2222
- "3.8"
2323
- "3.9"
24+
- "3.10"
2425
phases:
2526
pre_build:
2627
commands:
@@ -110,4 +111,4 @@ phases:
110111
- docker rm --force "${TEST_NAME}-app" || true
111112
- docker stop "${TEST_NAME}-tester" || true
112113
- docker rm --force "${TEST_NAME}-tester" || true
113-
- docker network rm "${TEST_NAME}-network" || true
114+
- docker network rm "${TEST_NAME}-network" || true

tests/integration/codebuild/buildspec.os.ubuntu.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ batch:
2121
- "3.7"
2222
- "3.8"
2323
- "3.9"
24+
- "3.10"
2425
phases:
2526
pre_build:
2627
commands:
@@ -108,4 +109,4 @@ phases:
108109
- docker rm --force "${TEST_NAME}-app" || true
109110
- docker stop "${TEST_NAME}-tester" || true
110111
- docker rm --force "${TEST_NAME}-tester" || true
111-
- docker network rm "${TEST_NAME}-network" || true
112+
- docker network rm "${TEST_NAME}-network" || true

0 commit comments

Comments
 (0)