Skip to content

Commit

Permalink
update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
youssefelmasry authored and flub committed Sep 26, 2023
1 parent 2eb4f9c commit 2ee3361
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
fail-fast: false
matrix:
python:
- v: "3.6"
tox_env: "py36"
- v: "3.7"
tox_env: "py37"
- v: "3.7"
Expand All @@ -29,9 +27,9 @@ jobs:
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python.v }}
- name: Install tox
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
py_modules=["pytest_timeout"],
entry_points={"pytest11": ["timeout = pytest_timeout"]},
install_requires=["pytest>=5.0.0"],
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -31,7 +31,6 @@
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minversion = 2.8
addopts = -ra

[tox]
envlist = py36,py37,py38,py39,py310,py311,pypy3
envlist = py37,py38,py39,py310,py311,pypy3

[testenv]
deps = pytest
Expand Down

0 comments on commit 2ee3361

Please sign in to comment.