Skip to content

Commit

Permalink
Remove support for EOL Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
flosell committed Oct 9, 2024
1 parent 4889c96 commit 7ba3945
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
)

0 comments on commit 7ba3945

Please sign in to comment.