Skip to content

Commit 0ca0bf2

Browse files
committed
# Conflicts: # .github/workflows/main.yml # setup.cfg # tox.ini
2 parents e36fdc8 + 3b7d8a9 commit 0ca0bf2

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
@@ -49,19 +49,14 @@ jobs:
4949
strategy:
5050
matrix:
5151
python:
52-
- "3.7"
52+
- "3.8"
5353
- "3.11"
5454
- "3.12"
55-
# Workaround for actions/setup-python#508
56-
dev:
57-
- -dev
5855
platform:
5956
- ubuntu-latest
6057
- macos-latest
6158
- windows-latest
6259
include:
63-
- python: "3.8"
64-
platform: ubuntu-latest
6560
- python: "3.9"
6661
platform: ubuntu-latest
6762
- python: "3.10"
@@ -83,7 +78,8 @@ jobs:
8378
id: python-install
8479
uses: actions/setup-python@v4
8580
with:
86-
python-version: ${{ matrix.python }}${{ matrix.dev }}
81+
python-version: ${{ matrix.python }}
82+
allow-prereleases: true
8783
- uses: actions/cache@v3
8884
id: cache
8985
with:
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
@@ -25,7 +25,7 @@ project_urls =
2525
packages = find_namespace:
2626
# disabled as it causes tests to be included #2505
2727
# include_package_data = true
28-
python_requires = >=3.7
28+
python_requires = >=3.8
2929
install_requires =
3030

3131
[options.packages.find]

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.25
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
[testenv]

0 commit comments

Comments
 (0)