From 10ccf6a9d89375f63662bbc5b58dd275a4a7369e Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sat, 11 Mar 2023 13:52:36 +0100 Subject: [PATCH] Drop Python 3.6 support, add 3.9 support 3.10 and 3.11 are blocked by https://github.com/vinayak-mehta/pdftopng/pull/17#issuecomment-1464906818 --- .github/workflows/tests.yml | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79819d4f..c63850bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,10 +4,10 @@ on: [pull_request] jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.7", "3.8"] steps: - uses: actions/checkout@v3 @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.9] + python-version: ["3.9"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 83ec3e7e..b0274d6d 100644 --- a/setup.py +++ b/setup.py @@ -73,9 +73,9 @@ def setup_package(): # Trove classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], )