Skip to content

Commit

Permalink
Drop support for Python 3.6 and 3.7
Browse files Browse the repository at this point in the history
fixes #9033
  • Loading branch information
David Davis authored and dralley committed Jul 24, 2021
1 parent 399c4e7 commit 860e968
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES/9033.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped support for Python 3.6 and 3.7. pulp_rpm now supports Python 3.8+.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
author="Pulp Project Developers",
author_email="pulp-list@redhat.com",
url="http://www.pulpproject.org",
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=requirements,
include_package_data=True,
packages=find_packages(exclude=["test"]),
Expand All @@ -28,8 +28,8 @@
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
),
entry_points={
"pulpcore.plugin": [
Expand Down

0 comments on commit 860e968

Please sign in to comment.