diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml index d2ab972..d4ff4eb 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.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11] + 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] 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 9eba6b7..cfa18db 100644 --- a/setup.py +++ b/setup.py @@ -39,13 +39,13 @@ setup(name='svgpathtools', "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - "Programming Language :: Python :: 2.0", - "Programming Language :: Python :: 2.1", - "Programming Language :: Python :: 2.2", - "Programming Language :: Python :: 2.3", - "Programming Language :: Python :: 2.4", - "Programming Language :: Python :: 2.5", - "Programming Language :: Python :: 2.6", + # "Programming Language :: Python :: 2.0", + # "Programming Language :: Python :: 2.1", + # "Programming Language :: Python :: 2.2", + # "Programming Language :: Python :: 2.3", + # "Programming Language :: Python :: 2.4", + # "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", @@ -57,8 +57,8 @@ setup(name='svgpathtools', "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", + # "Programming Language :: Python :: 3.10", + # "Programming Language :: Python :: 3.11", "Topic :: Multimedia :: Graphics :: Editors :: Vector-Based", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Image Recognition",