summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Bertó <463349+robertoberto@users.noreply.github.com>2026-05-19 03:29:11 -0300
committerGitHub <noreply@github.com>2026-05-19 03:29:11 -0300
commit5a64e952064b4e1c07019662114acbc3497498e5 (patch)
tree2e50605b126d25e16fd7c5004f0e81130f85cabc
parent0e8de05dd73d38aeb3bbd4d70d708501b6be0793 (diff)
parent94c4c1c5cb258f0ef88063d89b67d25f67d3c74c (diff)
downloadpyvyos-5a64e952064b4e1c07019662114acbc3497498e5.tar.gz
pyvyos-5a64e952064b4e1c07019662114acbc3497498e5.zip
Merge pull request #36 from vyos-contrib/hotfix/0.4.1-runtime-depsv0.4.1
fix: pytest was declared as runtime dependency
-rw-r--r--CHANGELOG.md9
-rw-r--r--pyproject.toml3
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 28c5e82..4fb9e9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.4.1] - 2026-05-19
+
+### Fixed
+- `pyproject.toml` declared `pytest>=9.0.3` as a **runtime** dependency.
+ `pip install pyvyos==0.4.0` therefore pulled pytest into every install.
+ Removed; pytest is and was always meant to be a `dev` extra only.
+ Runtime dependencies are now `requests>=2.32.0,<3.0` again — matching
+ what the `0.4.0` CHANGELOG claimed.
+
## [0.4.0] - 2025-11-20
`0.4.0` is a cleanup and consolidation release. It is the first version
diff --git a/pyproject.toml b/pyproject.toml
index 83f4f9c..e8aface 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "pyvyos"
-version = "0.4.0"
+version = "0.4.1"
authors = [
{ name = "Roberto Berto", email = "463349+robertoberto@users.noreply.github.com" },
]
@@ -28,7 +28,6 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
- "pytest>=9.0.3",
"requests>=2.34.2,<3.0",
]