From 07c08c70cf7a61efb9df168e0fc5f51186dba32d Mon Sep 17 00:00:00 2001 From: Jules Salzinger Date: Wed, 28 Aug 2024 09:18:09 +0200 Subject: [PATCH] Make pyyaml req more flexible --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4b2c4e4..43303ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3", ] dynamic = ["readme", "version"] -dependencies = ["pyyaml==6.0", "mock==4.0.3"] +dependencies = ["pyyaml>=6,<7", "mock==4.0.3"] [tool.setuptools] packages = ["yaecs"] diff --git a/requirements.txt b/requirements.txt index a0cfae6..956c1e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -pyyaml>=6.0,<7 +pyyaml>=6,<7 mock==4.0.3