From 7c1c0d86035f626fc774391df30eafc8b9dd5c3e Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Sun, 5 Feb 2023 15:44:41 +0100 Subject: [PATCH] Drop support for Python 3.6 and 3.7 Closes #329 --- .github/workflows/test.yml | 2 +- pyproject.toml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa92e6a34..c580b98d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest ] - python-version: [ '3.7', '3.8', "3.10" ] + python-version: [ "3.8", "3.11" ] defaults: run: shell: bash -l {0} diff --git a/pyproject.toml b/pyproject.toml index f5a5cb253..a059852d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ ] readme = "README.md" license = "MIT" -requires-python = ">=3.6" +requires-python = ">=3.8" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", @@ -18,8 +18,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "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", "Programming Language :: Python :: 3.10",