summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2022-08-31 23:28:54 +0200
committerGitHub <noreply@github.com>2022-08-31 23:28:54 +0200
commit6af939e096b084fb3594c99b08d4b80a9bbf7bc5 (patch)
tree996acec91f8f5b2057e988c322770bbebddd521c
parent09d434d87b42c206533f33847b99e32dd7934297 (diff)
parent5103aa9a389245d7067ed63a90cea47d27e22c97 (diff)
downloadpelican-6af939e096b084fb3594c99b08d4b80a9bbf7bc5.tar.gz
Merge pull request #3030 from lioman/master
-rw-r--r--.github/workflows/main.yml2
-rw-r--r--docs/contribute.rst2
-rw-r--r--docs/install.rst2
-rwxr-xr-xsetup.py1
-rw-r--r--tox.ini3
5 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 527b8db9..50a8714c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -16,8 +16,6 @@ jobs:
matrix:
config:
- os: ubuntu
- python: "3.6"
- - os: ubuntu
python: "3.7"
- os: ubuntu
python: "3.8"
diff --git a/docs/contribute.rst b/docs/contribute.rst
index 99a546a7..64c144d6 100644
--- a/docs/contribute.rst
+++ b/docs/contribute.rst
@@ -19,7 +19,7 @@ instructions will utilize Pip_ and Poetry_. These tools facilitate managing
virtual environments for separate Python projects that are isolated from one
another, so you can use different packages (and package versions) for each.
-Please note that Python 3.6+ is required for Pelican development.
+Please note that Python 3.7+ is required for Pelican development.
*(Optional)* If you prefer to `install Poetry <https://python-poetry.org/docs/master/#installation>`_ once for use with multiple projects,
you can install it via::
diff --git a/docs/install.rst b/docs/install.rst
index eb618035..cdc17bb9 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -1,7 +1,7 @@
Installing Pelican
##################
-Pelican currently runs best on 3.6+; earlier versions of Python are not supported.
+Pelican currently runs best on 3.7+; earlier versions of Python are not supported.
You can install Pelican via several different methods. The simplest is via Pip_::
diff --git a/setup.py b/setup.py
index ccaa44ab..b88f5928 100755
--- a/setup.py
+++ b/setup.py
@@ -66,7 +66,6 @@ setup(
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
diff --git a/tox.ini b/tox.ini
index 15575cf2..4bceced8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,9 +1,8 @@
[tox]
-envlist = py{3.6,3.7,3.8,3.9,3.10},docs,flake8
+envlist = py{3.7,3.8,3.9,3.10},docs,flake8
[testenv]
basepython =
- py3.6: python3.6
py3.7: python3.7
py3.8: python3.8
py3.9: python3.9