From 5d66e5db6872ac4f2a324d9a006e0246287dc688 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Mon, 19 Apr 2021 00:44:30 +0200 Subject: [PATCH] Remove Python 3.6 --- .github/workflows/python-tests.yml | 2 +- docs/changelog.rst | 2 ++ setup.cfg | 3 +-- tox.ini | 3 +-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index e0a280fd..8b44e56e 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/docs/changelog.rst b/docs/changelog.rst index ecd4fa45..2ed4a2c0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,8 @@ Version 2.3.dev Not released yet. +Sigal now requires Python 3.7+. + Version 2.2 ~~~~~~~~~~~ diff --git a/setup.cfg b/setup.cfg index d22c6a8d..18a974f1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,6 @@ classifiers = License :: OSI Approved :: MIT License 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 @@ -27,7 +26,7 @@ classifiers = zip_safe = False include_package_data = True packages = find: -python_requires = >=3.6 +python_requires = >=3.7 install_requires = blinker click diff --git a/tox.ini b/tox.ini index 07c390ad..987efbd6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] -envlist = py{36,37,38,39}-pillow{70,71,-latest},pypy3,check +envlist = py{37,38,39}-pillow{71,-latest},pypy3,check skip_missing_interpreters = true isolated_build = true [gh-actions] python = - 3.6: py36-pillow70 3.7: py37-pillow71 3.8: py38-pillow-latest, check 3.9: py39-pillow-latest