From 6afcb6f38486696dcea1026aea805dac081bdb0d Mon Sep 17 00:00:00 2001 From: Philipp Heinrich Date: Fri, 15 Sep 2023 15:03:05 +0200 Subject: [PATCH] drop support for python 3.6, add 3.10 --- .github/workflows/python-build.yml | 2 +- setup.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 4324e26..547b8cd 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -8,7 +8,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, "3.10" ] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index d3886ac..0305884 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,5 @@ #!/usr/bin/env python3 - -import io import os import sys from setuptools import find_packages, Command @@ -101,10 +99,10 @@ def run(self): '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', 'Programming Language :: Cython', ], )