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

add support for python 3.12; remove support for 3.7 #237

Merged
merged 1 commit into from
Apr 9, 2024
Merged
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
add support for python 3.12; remove support for 3.7
  • Loading branch information
pseudonym117 committed Apr 9, 2024
commit de6fc2206c7b03d2509ea1242fa6827d1f4bcda5
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v4.1.2
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5.1.0
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4.1.2
@@ -37,10 +37,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5.1.0
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/ambv/black
rev: 18.9b0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.3.0
hooks:
- id: black
language_version: python3.7
language_version: python3.12
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = docs, py{py3,37,38,39,310,311}
envlist = docs, py{py3,38,39,310,311,312}

[testenv]
deps =