Skip to content

Commit a99a0d3

Browse files
authored
Merge pull request #9 from tylerjereddy/treddy_test_py38
CI, TST: test Python 3.8
2 parents f95391a + 2a9d69a commit a99a0d3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
strategy:
1616
matrix:
1717
tox_env:
18+
- "py38"
1819
- "py39"
1920
- "py310"
2021
- "py311"
2122
os: [ubuntu-latest, windows-latest]
2223
include:
24+
- tox_env: "py38"
25+
python: "3.8"
2326
- tox_env: "py39"
2427
python: "3.9"
2528
- tox_env: "py310"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ def read(fname):
2020
description='Select tests with Python regex',
2121
long_description=read('README.md'),
2222
py_modules=['pytest_regex'],
23-
python_requires='>=3.9',
23+
python_requires='>=3.8',
2424
install_requires=['pytest>=3.5.0'],
2525
classifiers=[
2626
'Development Status :: 4 - Beta',
2727
'Framework :: Pytest',
2828
'Intended Audience :: Developers',
2929
'Topic :: Software Development :: Testing',
3030
'Programming Language :: Python',
31+
'Programming Language :: Python :: 3.8',
3132
'Programming Language :: Python :: 3.9',
3233
'Programming Language :: Python :: 3.10',
3334
'Programming Language :: Python :: 3.11',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py39,py310,py311
3+
py38,py39,py310,py311
44
[testenv]
55
deps =
66
pytest>=7

0 commit comments

Comments
 (0)