Skip to content

Commit 62fb804

Browse files
committed
[pythonpackage] Update pythonpackage.yml
remove 3.6, 3.7 python versions since they reached end of life from matrix and add newer versions
1 parent 481847b commit 62fb804

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
max-parallel: 4
2020
matrix:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
22-
python-version: [3.6, 3.7, 3.8, 3.9]
22+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2323

2424
steps:
2525
- uses: actions/checkout@v2
@@ -52,7 +52,7 @@ jobs:
5252
max-parallel: 4
5353
matrix:
5454
os: [ubuntu-latest, macos-latest, windows-latest]
55-
python-version: [3.8]
55+
python-version: ['3.10']
5656
steps:
5757
- uses: actions/checkout@v2
5858
- uses: conda-incubator/setup-miniconda@v2
@@ -79,10 +79,10 @@ jobs:
7979
runs-on: [ubuntu-latest]
8080
steps:
8181
- uses: actions/checkout@v2
82-
- name: Setup Python 3.8
82+
- name: Setup Python 3.10
8383
uses: actions/setup-python@v2
8484
with:
85-
python-version: "3.8"
85+
python-version: "3.10"
8686
- name: Install dependencies
8787
run: |
8888
python setup.py install
@@ -100,10 +100,10 @@ jobs:
100100
runs-on: [ubuntu-latest]
101101
steps:
102102
- uses: actions/checkout@v2
103-
- name: Setup Python 3.8
103+
- name: Setup Python 3.10
104104
uses: actions/setup-python@v2
105105
with:
106-
python-version: "3.8"
106+
python-version: "3.10"
107107
- name: Install dependencies
108108
run: |
109109
python setup.py install

0 commit comments

Comments
 (0)