From ff24e4ba34371cad48ff576c5162a63af190a972 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Thu, 16 Feb 2023 15:19:09 +0000 Subject: [PATCH] Drop support for Python 3.7 --- .github/workflows/ci_workflows.yml | 6 +++--- setup.cfg | 2 +- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index 598b168f..b8010557 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -20,20 +20,20 @@ jobs: - linux: codestyle # Standard tests - - linux: py37-test - linux: py38-test - linux: py39-test - linux: py310-test + - linux: py311-test - - macos: py37-test - macos: py38-test - macos: py39-test - macos: py310-test + - macos: py311-test - - windows: py37-test - windows: py38-test - windows: py39-test - windows: py310-test + - windows: py311-test publish: uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 diff --git a/setup.cfg b/setup.cfg index 5fae7824..669a4da7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ long_description = file: README.rst [options] zip_safe = False -python_requires = >=3.7 +python_requires = >=3.8 packages = find: setup_requires = setuptools_scm install_requires = diff --git a/tox.ini b/tox.ini index 4fbf72da..b2af9428 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,38,39,py310}-test +envlist = py{38,39,310,311}-test requires = pip >= 18.0 setuptools >= 30.3.0