Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
include:
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: '3.10'
Expand All @@ -31,9 +29,11 @@ jobs:
tox-env: py312
- python-version: '3.13'
tox-env: py313
# exclude:
# - platform: windows-latest
# python-version: '3.13'
- python-version: '3.14'
tox-env: py314
exclude:
- platform: windows-latest
python-version: '3.14'

env:
TOXENV: ${{ matrix.tox-env }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
python-version: [3.13]

env:
TOXENV: lint
Expand All @@ -91,7 +91,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
python-version: [3.13]

env:
TOXENV: documents
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
python-version: [3.13]

runs-on: ubuntu-latest

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.13
- name: Package
run: |
pip install --upgrade wheel build
Expand Down
1 change: 1 addition & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 10.1

- **NEW**: Drop support for Python 3.8 which is "end of life".
- **NEW**: Add `wcmatch.glob.compile(pattern)` and `wcmatch.fnmatch.compile(pattern)` to allow for precompiled matcher
objects that can be reused.

Expand Down
1 change: 0 additions & 1 deletion hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def update(self, metadata):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "wcmatch"
description = "Wildcard/glob file name matcher."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{ name = "Isaac Muse", email = "Isaac.Muse@gmail.com" },
]
Expand Down Expand Up @@ -113,7 +113,7 @@ legacy_tox_ini = """
isolated_build = true
skipsdist=true
envlist=
py38,py39,py310,py311,py312,py313,
py39,py310,py311,py312,py313,
lint

[testenv]
Expand All @@ -139,7 +139,7 @@ deps=
-r requirements/docs.txt
commands=
{envpython} -m mkdocs build --clean --verbose --strict
{envbindir}/pyspelling
{envbindir}/pyspelling -j 8

[pytest]
addopts=-p no:warnings
Expand Down