Skip to content

Commit a3946c5

Browse files
Merge pull request #411 from JessicaTegner/py1314
Adding python 3.14, 3.15 and pypy3.11
2 parents 7618254 + 306312f commit a3946c5

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: Continuous Integration
22

3-
on: [push, pull_request]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
48

59

610
defaults:
711
run:
812
shell: bash
913

1014
concurrency:
11-
group: ci-tests-${{ github.ref }}-1
15+
group: test-${{ github.ref }}-1
1216
cancel-in-progress: true
1317

1418
jobs:
@@ -17,7 +21,7 @@ jobs:
1721
fail-fast: false
1822
matrix:
1923
os: [ubuntu-22.04, ubuntu-24.04, macos-15, macos-14, windows-2022]
20-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9", "pypy3.10", ]
24+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15.0-alpha.1", "pypy3.10", "pypy3.11", ]
2125
runs-on: ${{ matrix.os }}
2226
steps:
2327
- name: Check out repository

pypandoc/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
44+
"Programming Language :: Python :: 3.14",
45+
"Programming Language :: Python :: 3.15",
4346
"Programming Language :: Python :: Implementation :: CPython",
4447
"Programming Language :: Python :: Implementation :: PyPy",
4548
]

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ classifiers = [
2323
'Programming Language :: Python :: 3.10',
2424
'Programming Language :: Python :: 3.11',
2525
'Programming Language :: Python :: 3.12',
26+
'Programming Language :: Python :: 3.13',
27+
'Programming Language :: Python :: 3.14',
28+
'Programming Language :: Python :: 3.15',
2629
'Programming Language :: Python :: Implementation :: CPython',
2730
'Programming Language :: Python :: Implementation :: PyPy'
2831
]

0 commit comments

Comments
 (0)