Skip to content

Commit bc27fdc

Browse files
committed
Upd CI
1 parent 8891a68 commit bc27fdc

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13+
strategy:
14+
max-parallel: 4
15+
matrix:
16+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1317
steps:
1418
- uses: actions/checkout@v4
15-
- name: Set up Python 3.12
19+
- name: Set up Python $
1620
uses: actions/setup-python@v5
1721
with:
18-
python-version: 3.12
22+
python-version: $
1923
- name: Install dependencies
2024
run: |
2125
python -m pip install --upgrade pip

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@
4646

4747
# Specify the Python versions you support here. In particular, ensure
4848
# that you indicate whether you support Python 2, Python 3 or both.
49-
'Programming Language :: Python :: 3.8',
50-
'Programming Language :: Python :: 3.9',
5149
'Programming Language :: Python :: 3.9',
5250
'Programming Language :: Python :: 3.10',
5351
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)