File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 1313VENV_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)
2020PY_PATH := $(shell command -v python3 2>/dev/null || command -v python 2>/dev/null)
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55# ---------------------------------------------------------------------
66[project ]
77name = " ngraph"
8- version = " 0.11.1 "
8+ version = " 0.12.0 "
99description = " A tool and a library for network modeling and analysis."
1010readme = " README.md"
1111authors = [{ 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 ]
You can’t perform that action at this time.
0 commit comments