Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 2b4d542

Browse files
authored
setup,ci: Set the required Python version to 3.10 (#42)
1 parent 0c21c7a commit 2b4d542

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/default.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v2
1414
with:
15-
python-version: "3.9"
15+
python-version: "3.10"
1616
- name: Cache pip packages
1717
uses: actions/cache@v2
1818
with:
@@ -56,7 +56,7 @@ jobs:
5656
- name: Set up Python
5757
uses: actions/setup-python@v2
5858
with:
59-
python-version: "3.9"
59+
python-version: "3.10"
6060
- name: Cache pip packages
6161
uses: actions/cache@v2
6262
with:
@@ -100,7 +100,7 @@ jobs:
100100
- name: Set up Python
101101
uses: actions/setup-python@v2
102102
with:
103-
python-version: "3.9"
103+
python-version: "3.10"
104104
- name: Cache pip packages
105105
uses: actions/cache@v2
106106
with:
@@ -144,7 +144,7 @@ jobs:
144144
- name: Set up Python
145145
uses: actions/setup-python@v2
146146
with:
147-
python-version: "3.9"
147+
python-version: "3.10"
148148
- name: Cache pip packages
149149
uses: actions/cache@v2
150150
with:
@@ -187,7 +187,7 @@ jobs:
187187
- name: Set up Python
188188
uses: actions/setup-python@v2
189189
with:
190-
python-version: "3.9"
190+
python-version: "3.10"
191191
- name: Cache pip packages
192192
uses: actions/cache@v2
193193
with:

.github/workflows/timeline-check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
- uses: actions/checkout@v2
1010
with:
1111
fetch-depth: 0
12-
- name: Set up Python 3.9
12+
- name: Set up Python
1313
uses: actions/setup-python@v2
1414
with:
15-
python-version: 3.9
15+
python-version: "3.10"
1616
- name: Cache pip packages
1717
uses: actions/cache@v2
1818
with:

changes/42.breaking.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Now it requires Python 3.10 or higher to run.

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ project_urls =
2929
package_dir =
3030
= src
3131
packages = find_namespace:
32-
python_requires = >=3.9
32+
python_requires = >=3.10
3333
setup_requires =
3434
setuptools>=50.3.2
3535
install_requires =
@@ -44,7 +44,7 @@ install_requires =
4444
trafaret>=2.1.0
4545
uvloop>=0.16.0
4646
zipstream~=1.1.4
47-
backend.ai-common~=22.3.0.dev0
47+
backend.ai-common~=22.3.0b2
4848
zip_safe = false
4949
include_package_data = true
5050

0 commit comments

Comments
 (0)