Skip to content

Commit

Permalink
Merge branch 'master' of github.com:plone/plone.rest
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Sep 22, 2023
2 parents df7fc7d + de3266d commit d83a8ad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 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
1 change: 1 addition & 0 deletions news/141.breaking
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 2.7, 3.6 and 3.7 @tisto
2 changes: 1 addition & 1 deletion plone-6.0.x.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[buildout]
extends =
https://dist.plone.org/release/6.0.0/versions.cfg
https://dist.plone.org/release/6.0.7/versions.cfg
base.cfg

[instance]
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ 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.6",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="rest http",
author="Plone Foundation",
Expand All @@ -49,7 +48,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 d83a8ad

Please sign in to comment.