File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ jobs:
15
15
strategy :
16
16
matrix :
17
17
tox_env :
18
+ - " py38"
18
19
- " py39"
19
20
- " py310"
20
21
- " py311"
21
22
os : [ubuntu-latest, windows-latest]
22
23
include :
24
+ - tox_env : " py38"
25
+ python : " 3.8"
23
26
- tox_env : " py39"
24
27
python : " 3.9"
25
28
- tox_env : " py310"
Original file line number Diff line number Diff line change @@ -20,14 +20,15 @@ def read(fname):
20
20
description = 'Select tests with Python regex' ,
21
21
long_description = read ('README.md' ),
22
22
py_modules = ['pytest_regex' ],
23
- python_requires = '>=3.9 ' ,
23
+ python_requires = '>=3.8 ' ,
24
24
install_requires = ['pytest>=3.5.0' ],
25
25
classifiers = [
26
26
'Development Status :: 4 - Beta' ,
27
27
'Framework :: Pytest' ,
28
28
'Intended Audience :: Developers' ,
29
29
'Topic :: Software Development :: Testing' ,
30
30
'Programming Language :: Python' ,
31
+ 'Programming Language :: Python :: 3.8' ,
31
32
'Programming Language :: Python :: 3.9' ,
32
33
'Programming Language :: Python :: 3.10' ,
33
34
'Programming Language :: Python :: 3.11' ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py39,py310,py311
3
+ py38, py39,py310,py311
4
4
[testenv]
5
5
deps =
6
6
pytest>=7
You can’t perform that action at this time.
0 commit comments