Skip to content

Commit 2ee3361

Browse files
youssefelmasryflub
authored andcommitted
update python versions
1 parent 2eb4f9c commit 2ee3361

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ jobs:
88
fail-fast: false
99
matrix:
1010
python:
11-
- v: "3.6"
12-
tox_env: "py36"
1311
- v: "3.7"
1412
tox_env: "py37"
1513
- v: "3.7"
@@ -29,9 +27,9 @@ jobs:
2927
run: |
3028
git config --global core.autocrlf false
3129
git config --global core.eol lf
32-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3331
- name: Set up Python
34-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v4
3533
with:
3634
python-version: ${{ matrix.python.v }}
3735
- name: Install tox

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
py_modules=["pytest_timeout"],
1818
entry_points={"pytest11": ["timeout = pytest_timeout"]},
1919
install_requires=["pytest>=5.0.0"],
20-
python_requires=">=3.6",
20+
python_requires=">=3.7",
2121
classifiers=[
2222
"Development Status :: 5 - Production/Stable",
2323
"Environment :: Console",
@@ -31,7 +31,6 @@
3131
"Programming Language :: Python :: Implementation :: CPython",
3232
"Programming Language :: Python :: 3",
3333
"Programming Language :: Python :: 3 :: Only",
34-
"Programming Language :: Python :: 3.6",
3534
"Programming Language :: Python :: 3.7",
3635
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ minversion = 2.8
33
addopts = -ra
44

55
[tox]
6-
envlist = py36,py37,py38,py39,py310,py311,pypy3
6+
envlist = py37,py38,py39,py310,py311,pypy3
77

88
[testenv]
99
deps = pytest

0 commit comments

Comments
 (0)