summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2022-07-20 12:31:34 +0100
committerStephen Finucane <stephen@that.guru>2022-07-20 12:31:34 +0100
commitce9f60b73d68f2d324a107ca0c0b2f4e5e5341a3 (patch)
treefb84f53740bf52ec99581b8a61410f147392fd43
parent631b5572878f41843b70407b5be80407f9b83262 (diff)
downloadfixtures-git-ce9f60b73d68f2d324a107ca0c0b2f4e5e5341a3.tar.gz
Drop support for Python 3.6
It's EOL Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r--.github/workflows/ci.yaml2
-rw-r--r--NEWS3
-rw-r--r--README.rst2
-rw-r--r--setup.cfg3
-rw-r--r--tox.ini2
5 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 91ca779..d0245db 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-beta - 3.11", "pypy-3.7", "pypy-3.8", "pypy-3.9"]
+ python: ["3.7", "3.8", "3.9", "3.10", "3.11.0-beta - 3.11", "pypy-3.7", "pypy-3.8", "pypy-3.9"]
steps:
- name: Checkout source code
uses: actions/checkout@v2
diff --git a/NEWS b/NEWS
index f4e97d4..499d047 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ fixtures release notes
NEXT
~~~~
+* Drop support for Python 3.6 (EOL)
+ (Stephen Finucane)
+
4.0.1
~~~~~
diff --git a/README.rst b/README.rst
index 4b12e8e..b07af06 100644
--- a/README.rst
+++ b/README.rst
@@ -25,7 +25,7 @@ compatible test cases easy and straight forward.
Dependencies
============
-* Python 3.6+
+* Python 3.7+
This is the base language fixtures is written in and for.
* pbr
diff --git a/setup.cfg b/setup.cfg
index 21589e9..a16e500 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -7,7 +7,7 @@ description_content_type = text/x-rst; charset=UTF-8
author = Robert Collins
author_email = robertc@robertcollins.net
url = https://github.com/testing-cabal/fixtures
-python_requires = >=3.6
+python_requires = >=3.7
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
@@ -16,7 +16,6 @@ classifiers =
Operating System :: OS Independent
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
diff --git a/tox.ini b/tox.ini
index 3b5856f..a7e5ded 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py36,py37,py38,py39,py310,py311,pypy3
+envlist = py37,py38,py39,py310,py311,pypy3
minversion = 3.1
[testenv]