Skip to content

Commit

Permalink
Update supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nkantar committed Jan 26, 2025
1 parent 71464c4 commit 59504b0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/code-quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,18 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]

steps:
- uses: taiki-e/install-action@just

- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install just
# Temporarily use the open PR branch:
# - https://github.com/casey/just/pull/2312
# - https://github.com/casey/just/issues/2311
run: pipx install git+https://github.com/rachtsingh/just.git

- name: Install uv
run: pipx install uv

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## [Unreleased]

### Added
- Python 3.13-dev to CI version matrix
- Python 3.13 and 3.14-dev to CI version matrix

### Removed
- `default_if_none` decorator in favor of in-function implementation
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Environment variables are strings by default. This can be *rather* inconvenient
Features
--------

- Compatible with Python 3.8+ only (the last Python 2 compatible version was `1.0.2 <https://github.com/nkantar/Parsenvy/releases/tag/1.0.2>`_).
- Compatible with Python 3.9+ only (the last Python 2 compatible version was `1.0.2 <https://github.com/nkantar/Parsenvy/releases/tag/1.0.2>`_).
- Fully tested on Linux, macOS, and Windows.
- No dependencies outside of the Python standard library.
- BSD (3-Clause) licensed.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
Expand Down

0 comments on commit 59504b0

Please sign in to comment.