Skip to content

Commit

Permalink
Merge pull request #819 from colin-pm/version_update
Browse files Browse the repository at this point in the history
Drop Python 2 and EOL Python 3 versions
  • Loading branch information
colin-pm committed Jun 21, 2022
2 parents f7cad8c + a9c2459 commit 042feb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
Expand Down Expand Up @@ -87,7 +86,6 @@ jobs:
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
Expand Down Expand Up @@ -123,7 +121,7 @@ jobs:
strategy:
matrix:
python-version:
- 3.6
- 3.7
vault-version:
- 1.4.7
- 1.5.9
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ description = README.md
license_files = LICENSE.txt

[bdist_wheel]
universal = 1
universal = 0
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ def load_long_description():
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=find_packages(exclude=["docs*", "tests*"]),
python_requires=">=2.7",
python_requires=">=3.7",
install_requires=[
"requests>=2.21.0",
"six>=1.5.0",
Expand Down

0 comments on commit 042feb7

Please sign in to comment.