Skip to content

Commit f5a5617

Browse files
committed
2 parents 5ca761c + 3b7d8a9 commit f5a5617

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,14 @@ jobs:
4242
strategy:
4343
matrix:
4444
python:
45-
- "3.7"
45+
- "3.8"
4646
- "3.11"
4747
- "3.12"
48-
# Workaround for actions/setup-python#508
49-
dev:
50-
- -dev
5148
platform:
5249
- ubuntu-latest
5350
- macos-latest
5451
- windows-latest
5552
include:
56-
- python: "3.8"
57-
platform: ubuntu-latest
5853
- python: "3.9"
5954
platform: ubuntu-latest
6055
- python: "3.10"
@@ -76,7 +71,8 @@ jobs:
7671
- name: Setup Python
7772
uses: actions/setup-python@v4
7873
with:
79-
python-version: ${{ matrix.python }}${{ matrix.dev }}
74+
python-version: ${{ matrix.python }}
75+
allow-prereleases: true
8076
- name: Install tox
8177
run: |
8278
python -m pip install tox
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Require Python 3.8 or later.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers =
1515
[options]
1616
packages = find_namespace:
1717
include_package_data = true
18-
python_requires = >=3.7
18+
python_requires = >=3.8
1919
install_requires =
2020
zipp>=0.5
2121
typing-extensions>=3.6.4; python_version < "3.8"

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
[tox]
2-
envlist = python
3-
minversion = 3.2
4-
# https://github.com/jaraco/skeleton/issues/6
5-
tox_pip_extensions_ext_venv_update = true
62
toxworkdir={env:TOX_WORK_DIR:.tox}
73

84

0 commit comments

Comments
 (0)