diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 88bf264..56d9c79 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", 3.11] + python-version: [3.9, "3.10", 3.11] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ed845a..936d571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,13 @@ This changelog contains a loose collection of changes in every release including The format is based on [Keep a Changelog](http://keepachangelog.com/) + ## 0.9.0 ### Removed * **Removed official support for EOL Python 3.7**. TrailScraper might still run but we no longer actively test for it. +* **Removed official support for EOL Python 3.8**. TrailScraper might still run but we no longer actively test for it. ## 0.8.1 diff --git a/go b/go index 893cbc4..130ff45 100755 --- a/go +++ b/go @@ -3,8 +3,7 @@ set -e SCRIPT_DIR=$(cd $(dirname $0) ; pwd -P) VENV_DIR="${SCRIPT_DIR}/venvs/trailscraper-venv${VENV_POSTFIX}" -VERSIONS="3.8 -3.9 +VERSIONS="3.9 3.10 3.11" diff --git a/setup.py b/setup.py index 19edce0..eb8338e 100644 --- a/setup.py +++ b/setup.py @@ -44,10 +44,9 @@ def read_file(filename): 'Topic :: Security', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', ], - python_requires='>=3.8', + python_requires='>=3.9', )