Skip to content

Commit

Permalink
Drop Python 2.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Sep 21, 2023
1 parent d134cf9 commit b864cfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.10", "3.9", "3.8", "2.7"]
python-version: ["3.11", "3.10", "3.9", "3.8"]
plone-version: ["6.0", "5.2"]
exclude:
- python-version: 2.7
plone-version: 6.0
- python-version: 3.11
plone-version: 5.2
- python-version: 3.10
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def read(*rnames):
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -49,7 +49,7 @@ def read(*rnames):
namespace_packages=["plone"],
include_package_data=True,
zip_safe=False,
python_requires=">=2.7",
python_requires=">=3.8",
extras_require=dict(
test=[
"plone.app.testing[robot]>=4.2.2",
Expand Down

0 comments on commit b864cfe

Please sign in to comment.