Skip to content

Commit

Permalink
Support for Python 3.9 to 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rclement committed Nov 13, 2024
1 parent 3665b21 commit 5a7ad97
Show file tree
Hide file tree
Showing 4 changed files with 410 additions and 383 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Cache Python modules
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Cache Python modules
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- uses: actions/cache@v4
name: Configure pip caching
with:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- uses: actions/cache@v4
name: Configure pip caching
with:
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- uses: actions/cache@v4
name: Configure pip caching
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Add Python 3.12 and 3.13 support
- Use `package.json` to track and bundle external JS dependencies

### Changed
- Update dependencies

### Removed
- BREAKING: drop Python 3.8 support

## [0.6.2] - 2023-08-23
### Fixed
- Improve compatibility with new JSON API format introduced in Datasette 1.0a3
Expand Down
Loading

0 comments on commit 5a7ad97

Please sign in to comment.