From 37586a1103da3d324591f4989205be4a2a2bb2d5 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Fri, 19 Aug 2022 17:47:02 +0100 Subject: [PATCH] move towards 3.7 from 3.8 see https://github.com/collective/icalendar/pull/366/files --- CHANGES.rst | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f628918..27bc9db 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,7 +7,7 @@ Changelog Breaking changes: -- Require Python 3.8 as minimum Python version. [maurits] +- Require Python 3.7 as minimum Python version. [maurits] [niccokunzmann] Bug fixes: diff --git a/setup.py b/setup.py index ab1ad46..286277b 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,7 @@ setuptools.setup( 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', diff --git a/tox.ini b/tox.ini index 5f4d8a8..8d1e399 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # to run for a specific environment, use ``tox -e ENVNAME`` [tox] -envlist = py38,py39,py310,pypy3,docs +envlist = py37,py38,py39,py310,pypy3,docs # Note: the 'docs' env creates a 'build' directory which may interfere in strange ways # with the other environments. You might see this when you run the tests in parallel. # See https://github.com/collective/icalendar/pull/359#issuecomment-1214150269