Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for python 3.7 and add CI for 3.11 and 3.12 #19

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,24 @@ jobs:
fail-fast: false
matrix:
include:
- name: Linux py37
pyversion: '3.7'
- name: Linux py38
pyversion: '3.8'
- name: Linux py39
pyversion: '3.9'
- name: Linux py310
pyversion: '3.10'
- name: Linux py311
pyversion: '3.11'
- name: Linux py312
pyversion: '3.12'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.pyversion }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyversion }}
- name: Install poetry
run: pip install "poetry>=1.1.8,<1.2"
run: pip install "poetry>=1.4.2,<1.5"
- name: Install dependencies
run: poetry install
- name: Lint
Expand All @@ -51,7 +53,7 @@ jobs:
with:
python-version: '3.9'
- name: Install poetry
run: pip install "poetry>=1.1.8,<1.2"
run: pip install "poetry>=1.4.2,<1.5"
- name: Install dependencies
run: poetry install
- name: Build wheel
Expand Down
Loading
Loading