Skip to content

Commit 1f5453c

Browse files
Drop support for python 3.7 and add CI for 3.11 and 3.12 (#19)
* Drop support for python 3.7 and add CI for 3.11 and 3.12 * Update poetry to 1.4.2
1 parent bf5cad7 commit 1f5453c

File tree

3 files changed

+733
-558
lines changed

3 files changed

+733
-558
lines changed

.github/workflows/ci.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,24 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
include:
21-
- name: Linux py37
22-
pyversion: '3.7'
2321
- name: Linux py38
2422
pyversion: '3.8'
2523
- name: Linux py39
2624
pyversion: '3.9'
2725
- name: Linux py310
2826
pyversion: '3.10'
27+
- name: Linux py311
28+
pyversion: '3.11'
29+
- name: Linux py312
30+
pyversion: '3.12'
2931
steps:
3032
- uses: actions/checkout@v2
3133
- name: Set up Python ${{ matrix.pyversion }}
3234
uses: actions/setup-python@v2
3335
with:
3436
python-version: ${{ matrix.pyversion }}
3537
- name: Install poetry
36-
run: pip install "poetry>=1.1.8,<1.2"
38+
run: pip install "poetry>=1.4.2,<1.5"
3739
- name: Install dependencies
3840
run: poetry install
3941
- name: Lint
@@ -51,7 +53,7 @@ jobs:
5153
with:
5254
python-version: '3.9'
5355
- name: Install poetry
54-
run: pip install "poetry>=1.1.8,<1.2"
56+
run: pip install "poetry>=1.4.2,<1.5"
5557
- name: Install dependencies
5658
run: poetry install
5759
- name: Build wheel

0 commit comments

Comments
 (0)