Skip to content

Commit 2934e8d

Browse files
committed
Update to v0.12.0
1 parent 9c1e54c commit 2934e8d

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.0] - 2025-12-06
9+
10+
### Changed
11+
12+
- **BREAKING**: Minimum Python version raised to 3.11
13+
- **Dependencies**: Updated netgraph-core to >=0.3.0
14+
815
## [0.11.1] - 2025-12-06
916

1017
### Added

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
VENV_BIN := $(PWD)/venv/bin
1414

1515
# PY_BEST: scan for newest supported Python (used when creating new venvs)
16-
# Supports 3.9-3.13 to match CI matrix
17-
PY_BEST := $(shell for v in 3.13 3.12 3.11 3.10 3.9; do command -v python$$v >/dev/null 2>&1 && { echo python$$v; exit 0; }; done; command -v python3 2>/dev/null || command -v python 2>/dev/null)
16+
# Supports 3.11-3.13 to match requires-python >=3.11
17+
PY_BEST := $(shell for v in 3.13 3.12 3.11; do command -v python$$v >/dev/null 2>&1 && { echo python$$v; exit 0; }; done; command -v python3 2>/dev/null || command -v python 2>/dev/null)
1818

1919
# PY_PATH: active python3/python on PATH (respects CI setup-python and activated venvs)
2020
PY_PATH := $(shell command -v python3 2>/dev/null || command -v python 2>/dev/null)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
# ---------------------------------------------------------------------
66
[project]
77
name = "ngraph"
8-
version = "0.11.1"
8+
version = "0.12.0"
99
description = "A tool and a library for network modeling and analysis."
1010
readme = "README.md"
1111
authors = [{ name = "Andrey Golovanov" }]
@@ -34,7 +34,7 @@ dependencies = [
3434
"pyyaml>=6.0",
3535
"pandas>=2.0",
3636
"jsonschema>=4.0",
37-
"netgraph-core>=0.2.2",
37+
"netgraph-core>=0.3.0",
3838
]
3939

4040
[project.urls]

0 commit comments

Comments
 (0)