Skip to content

Commit 5ac245a

Browse files
authored
Merge pull request #110 from 10sr/dropubuntu2004
Remove build targets which use ubuntu 20.04
2 parents 9621ebb + 78a23b0 commit 5ac245a

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,8 @@ jobs:
5151
matrix:
5252
# Available versions:
5353
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
54-
python-version: ["3.10", "3.11", "3.12", "3.13", "pypy-3.7"]
54+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5555
runs-on: [ubuntu-latest]
56-
include:
57-
- python-version: "3.9"
58-
runs-on: ubuntu-20.04
59-
- python-version: "3.8"
60-
runs-on: ubuntu-20.04
61-
- python-version: "3.7"
62-
runs-on: ubuntu-20.04
63-
- python-version: "3.6"
64-
runs-on: ubuntu-20.04
6556
env:
6657
python_version_codecov: "3.13"
6758
runs-on: ${{ matrix.runs-on }}

setup.cfg

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ classifiers =
2222
Operating System :: OS Independent
2323
Programming Language :: Python :: 3
2424
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.6
26-
Programming Language :: Python :: 3.7
27-
Programming Language :: Python :: 3.8
28-
Programming Language :: Python :: 3.9
2925
Programming Language :: Python :: 3.10
3026
Programming Language :: Python :: 3.11
3127
Programming Language :: Python :: 3.12
@@ -37,11 +33,10 @@ classifiers =
3733

3834

3935
[options]
40-
python_requires = >=3.6
36+
python_requires = >=3.10
4137
packages = find:
4238
install_requires =
4339
flake8
44-
more-itertools; python_version<"3.10"
4540
setup_requires =
4641
wheel
4742
setuptools_scm>=6.0
@@ -113,6 +108,8 @@ exclude =
113108
# https://sphinx-rtd-tutorial.readthedocs.io/en/latest/docstrings.html
114109
style = sphinx
115110
arg_type_hints_in_docstring = False
111+
check_return_types = False
112+
check_yield_types = False
116113
allow_init_docstring = True
117114

118115
[isort]

0 commit comments

Comments
 (0)