Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['pypy3.11', '3.10', '3.11', '3.12']
toxenv: [py]
include:
# windows
Expand All @@ -21,7 +21,7 @@ jobs:
toxenv: py
# typing
- os: ubuntu-latest
python: '3.8'
python: '3.10'
toxenv: typing
# misc
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repos:
rev: v3.1.0
hooks:
- id: setup-cfg-fmt
args: [--include-version-classifiers, --min-py-version=3.8]
args: [--include-version-classifiers]
#- repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.910-1
# hooks:
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Expand All @@ -29,7 +27,7 @@ project_urls =

[options]
packages = find:
python_requires = >=3.8
python_requires = >=3.10
include_package_data = True
package_dir = =src

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311,312},lint,typing
envlist = py{310,311,312},lint,typing

[testenv]
pip_pre = False
Expand Down