From 15a489c29dbd744cfc17c438c87f027f927b4d93 Mon Sep 17 00:00:00 2001 From: Jochen Kupperschmidt Date: Sat, 3 Apr 2021 18:04:44 +0200 Subject: [PATCH] Remove support for Python 3.6 Primary reason is to be able to use dataclasses. --- .travis.yml | 1 - CHANGES.rst | 2 ++ README.rst | 2 +- pyproject.toml | 2 +- setup.cfg | 3 +-- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c3a9c47..e4f07e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "3.6" - "3.7" - "3.8" - "3.9" diff --git a/CHANGES.rst b/CHANGES.rst index c80a6f2..65d66ed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,8 @@ Version 0.4 Unreleased +- Removed support for Python versions 3.6. + Version 0.3 ----------- diff --git a/README.rst b/README.rst index 7b0bdf0..c3e5880 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ This library was extracted from syslog2IRC_. Requirements ------------ -- Python 3.6+ +- Python 3.7+ Installation diff --git a/pyproject.toml b/pyproject.toml index 754a11b..5e40dc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [tool.black] line-length = 80 skip-string-normalization = true -target-version = ['py36'] +target-version = ['py37'] [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/setup.cfg b/setup.cfg index 1f9c06b..3c30c6a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,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 @@ -29,7 +28,7 @@ platforms = any [options] zip_safe = True -python_requires = >=3.6 +python_requires = >=3.7 packages = find: package_dir = =src -- 2.45.2