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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
tox-env: py313
- python-version: '3.14'
tox-env: py314
exclude:
- platform: windows-latest
python-version: '3.14'
# exclude:
# - platform: windows-latest
# python-version: '3.14'

env:
TOXENV: ${{ matrix.tox-env }}
Expand Down
34 changes: 27 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,40 @@ jobs:
python -m mkdocs gh-deploy -v --clean --remote-name gh-token
git push gh-token gh-pages

pypi:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Package
- name: Build
run: |
pip install --upgrade wheel build
pip install --upgrade pip build
python -m build -s -w
- name: Publish
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/

pypi-publish:
needs:
- build
runs-on: ubuntu-latest
environment: pypi
permissions:
# IMPORTANT: this permission is mandatory for Trusted Publishing
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PWD }}
print-hash: true
1 change: 1 addition & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 10.1

- **NEW**: Drop support for Python 3.8 which is "end of life".
- **NEW**: Add support for Python 3.14.
- **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: 1 addition & 0 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def update(self, metadata):
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed'
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ legacy_tox_ini = """
isolated_build = true
skipsdist=true
envlist=
py39,py310,py311,py312,py313,
py39,py310,py311,py312,py313,py314,
lint

[testenv]
Expand Down