From 281a92c1fa034a81afea8229b558042eef03a053 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 20 Dec 2023 00:52:14 +0100 Subject: [PATCH] Remove support for Python 3.6 --- .github/workflows/tests.yml | 2 +- CHANGES.rst | 1 + setup.py | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aefc854..ed87398 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-20.04 ] # , macos-latest, windows-latest ] - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] name: Python ${{ matrix.python-version }} on OS ${{ matrix.os }} steps: diff --git a/CHANGES.rst b/CHANGES.rst index b7fe65b..f6aa849 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ Imagecast changelog in progress =========== - Add capability to acquire images from HTML web pages, and elements thereof +- Remove support for Python 3.6 2023-01-17 0.5.0 diff --git a/setup.py b/setup.py index bff5468..e4566a7 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,6 @@ classifiers=[ "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",