From b04c440350347a8fc15fbba386af709eea766901 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 17 Nov 2022 17:42:56 -0600 Subject: [PATCH] Move Py compat target to 3.8 (closes gh-160) --- .github/workflows/ci.yml | 4 ++-- setup.py | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfc276f..aa0f3a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: uses: actions/setup-python@v4 with: # matches compat target in setup.py - python-version: '3.6' + python-version: '3.8' - name: "Main Script" run: | curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.8", "3.9", "3.x", "pypy3.8"] + python-version: ["3.8", "3.9", "3.x", "pypy3.8"] steps: - uses: actions/checkout@v3 - diff --git a/setup.py b/setup.py index e9c3bd3..852fd24 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,6 @@ setup(name="pytools", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics", @@ -34,11 +32,10 @@ setup(name="pytools", "Topic :: Utilities", ], - python_requires="~=3.6", + python_requires="~=3.8", install_requires=[ "platformdirs>=2.2.0", - "dataclasses>=0.7;python_version<='3.6'", "typing_extensions>=4.0; python_version<'3.11'", ], -- GitLab