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
3 changes: 2 additions & 1 deletion .github/workflows/nox-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]

name: Test Python ${{ matrix.python-version }}
steps:
Expand All @@ -50,6 +50,7 @@ jobs:
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true # For Python 3.14 pre-releases

- name: Setup virtualenv
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Install build deps
run: |
python -m pip --disable-pip-version-check install cibuildwheel==2.21.3 twine==5.1.1 setuptools
python -m pip --disable-pip-version-check install cibuildwheel==3.2.0 twine==6.2.0 setuptools cffi>=2.0.0
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
if: runner.os == 'Linux'
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and can be installed with `pip` or `pipenv`::
pip install --user cmarkgfm
pipenv install cmarkgfm

Wheels are provided for macOS, Linux, and Windows for Python 3.9, 3.10, 3.11, 3.12, and 3.13.
Wheels are provided for macOS, Linux, and Windows for Python 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14.


Usage
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import nox


@nox.session(py=['3.9', '3.10', '3.11', '3.12', '3.13'])
@nox.session(py=['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'])
def unit(session):
session.install('pytest', 'pytest-cov')
session.install('.')
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ def finalize_options(self):
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
cffi_modules=["src/cmarkgfm/build_cmark.py:ffibuilder"],
python_requires='>=3.9',
setup_requires=["cffi>=2.0.0", "pycparser>=2.06"],
install_requires=["cffi>=2.0.0"],
project_urls={
Expand Down