Skip to content

Commit

Permalink
Drop Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Sep 22, 2023
1 parent 3e3f58a commit 5d1dc07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions news/1.bugfix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Fix stored XSS (Cross Site Scripting) for SVG image in user portrait.
Done by forcing a download instead of displaying inline.
Normal accessing via an image tag is not affected and is safe.
See `security advisory <https://github.com/plone/plone.restapi/security/advisories/GHSA-hc5c-r8m5-2gfh>`_.
[maurits]
See `security advisory <https://github.com/plone/plone.restapi/security/advisories/GHSA-hc5c-r8m5-2gfh>`_. @maurits
3 changes: 1 addition & 2 deletions news/1570.bugfix
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
Use incoming request to produce location for @tus-upload
[instification]
Use incoming request to produce location for @tus-upload @instification
1 change: 1 addition & 0 deletions news/1709.breaking
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 3.7. Set python_requires to >= 3.8 @tisto
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def read(filename):
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -83,7 +82,7 @@ def read(filename):
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=["plone"],
python_requires=">=3.6",
python_requires=">=3.8",
include_package_data=True,
zip_safe=False,
install_requires=[
Expand Down

0 comments on commit 5d1dc07

Please sign in to comment.