diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index c9972b5..d3ff4be 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.7, 3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10"] steps: - uses: actions/checkout@v2 diff --git a/docs/changelog.rst b/docs/changelog.rst index fe56ed4..326bbc8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,7 +7,7 @@ Version 2.3.dev Not released yet. -Sigal now requires Python 3.7+. +Sigal now requires Python 3.8+. - Add option ``max_img_pixels`` to allow processing huge images (sets ``PIL.Image.MAX_IMAGE_PIXELS``) [:issue:`431`]. diff --git a/setup.cfg b/setup.cfg index e0b3ca7..9166e60 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.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -27,7 +26,7 @@ classifiers = zip_safe = False include_package_data = True packages = find: -python_requires = >=3.7 +python_requires = >=3.8 install_requires = blinker click diff --git a/tox.ini b/tox.ini index 7eb42ef..8e1bbdf 100644 --- a/tox.ini +++ b/tox.ini @@ -5,16 +5,15 @@ isolated_build = true [gh-actions] python = - 3.7: py37-pillow71 - 3.8: py38-pillow-latest, check - 3.9: py39-pillow-latest + 3.8: py38-pillow71, check + 3.9: py39-pillow80 3.10: py310-pillow-latest pypy3: pypy3 [testenv] deps = - pillow70: Pillow==7.0.0 pillow71: Pillow==7.1.0 + pillow80: Pillow==8.0.0 extras = all tests