From c5a36fc6a334e2c5b6f786d4771df761a305a584 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Wed, 12 Jan 2022 15:40:45 +0000 Subject: [PATCH] test and support python 3.10 instead of 3.6 --- .github/workflows/python_actions.yml | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python_actions.yml b/.github/workflows/python_actions.yml index 170e508..ce2e0ae 100644 --- a/.github/workflows/python_actions.yml +++ b/.github/workflows/python_actions.yml @@ -28,7 +28,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: - name: Checkout diff --git a/setup.py b/setup.py index 617fcca..d170a80 100644 --- a/setup.py +++ b/setup.py @@ -67,9 +67,10 @@ "Operating System :: MacOS", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "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", ], packages=packages, package_data=package_data,