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 #8855
  • Loading branch information
David Davis authored and daviddavis committed Jul 19, 2021
1 parent f4e5751 commit 9999e85
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES/8855.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped support for Python 3.6 and 3.7. Pulp now supports Python 3.8+.
2 changes: 1 addition & 1 deletion docs/contributing/style-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Style Guide

Python Version
--------------
All Pulp 3+ code will use Python 3.6+. It is not necessary to maintain backwards compatibility
All Pulp 3+ code will use Python 3.8+. It is not necessary to maintain backwards compatibility
with Python 2.Y.

PEP-8
Expand Down
4 changes: 2 additions & 2 deletions docs/installation/instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Instructions
Supported Platforms
-------------------

Pulp should work on any operating system that can provide a Python 3.6+ runtime environment and
Pulp should work on any operating system that can provide a Python 3.8+ runtime environment and
the supporting dependencies e.g. a database. Pulp has been demonstrated to work on Ubuntu, Debian,
Fedora, CentOS, and Mac OSX.

Expand Down Expand Up @@ -37,7 +37,7 @@ PyPI Installation
* system account: yes
* create corresponding private group: yes

2. Install python3.6(+) and pip.
2. Install python3.8(+) and pip.

3. Create a pulp venv::

Expand Down
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 Team",
author_email="pulp-list@redhat.com",
url="https://pulpproject.org",
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=requirements,
extras_require={
"s3": ["django-storages[boto3]"],
Expand All @@ -32,8 +32,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",
],
scripts=["bin/pulp-content"],
entry_points={
Expand Down

0 comments on commit 9999e85

Please sign in to comment.