Skip to content

Commit 961cfdb

Browse files
committed
Add support and testing for Python 3.14
1 parent 8528e73 commit 961cfdb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
18+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ]
1919

2020
steps:
2121
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "modularitypruning"
7-
version = "1.4.1"
7+
version = "1.5.0"
88
description = """Pruning tool to identify small subsets of network partitions that are significant from the perspective
99
of stochastic block model inference."""
1010
readme = "README.md"
@@ -23,6 +23,8 @@ 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",
2628
"Programming Language :: Python :: 3 :: Only",
2729
"License :: OSI Approved :: MIT License"
2830
]

0 commit comments

Comments
 (0)