Skip to content

Commit

Permalink
drop Python 3.7 support (#288)
Browse files Browse the repository at this point in the history
* drop Python 3.7 support

* Update tox.ini
  • Loading branch information
skshetry authored Jun 22, 2023
1 parent 42c8160 commit ad45ca6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
max-parallel: 3
matrix:
os: [ubuntu-22.04, macos-11, windows-2019]
pyv: ["3.7.16", "3.8", "3.9", "3.10"]
pyv: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@
],
"tests": tests_requirements,
},
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"pyinstaller40": [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36, py37, py38, py39
envlist = py38, py39, py310, py311

[testenv]
changedir = {toxinidir}/pydrive2/test
Expand Down

0 comments on commit ad45ca6

Please sign in to comment.