From 386b03eb7d189837367613c28eae811a925007ef Mon Sep 17 00:00:00 2001 From: Andrew Port Date: Mon, 18 Oct 2021 21:46:41 -0700 Subject: [PATCH] remove ci-testing for python versions github does not support --- .github/workflows/github-ci.yml | 2 +- setup.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml index 1d00631..1648247 100644 --- a/.github/workflows/github-ci.yml +++ b/.github/workflows/github-ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy2, pypy3] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy2, pypy3] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index cfa18db..11b4c93 100644 --- a/setup.py +++ b/setup.py @@ -47,11 +47,11 @@ setup(name='svgpathtools', # "Programming Language :: Python :: 2.5", # "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.0", - "Programming Language :: Python :: 3.1", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", + # "Programming Language :: Python :: 3.0", + # "Programming Language :: Python :: 3.1", + # "Programming Language :: Python :: 3.2", + # "Programming Language :: Python :: 3.3", + # "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7",