Skip to content

Commit

Permalink
Add support for recent Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
flosell committed Oct 9, 2024
1 parent ca143bf commit 77f6aac
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 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.9, "3.10", 3.11]
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)

## 0.9.0

### Added

* Support for Python 3.12
* Support for Python 3.13

### Removed

* **Removed official support for EOL Python 3.7**. TrailScraper might still run but we no longer actively test for it.
Expand Down
4 changes: 3 additions & 1 deletion go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ SCRIPT_DIR=$(cd $(dirname $0) ; pwd -P)
VENV_DIR="${SCRIPT_DIR}/venvs/trailscraper-venv${VENV_POSTFIX}"
VERSIONS="3.9
3.10
3.11"
3.11
3.12
3.13"

activate_venv() {
source "${VENV_DIR}/bin/activate"
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def read_file(filename):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
python_requires='>=3.9',
)

0 comments on commit 77f6aac

Please sign in to comment.