diff options
-rw-r--r-- | pyproject.toml | 12 | ||||
-rw-r--r-- | requirements.txt | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/pyproject.toml b/pyproject.toml index 68d80d5..11613a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,11 +23,11 @@ Issues = "https://github.com/gravscale/pyvyos/issues" [tool.hatch.metadata] dependencies = [ - "requests>=2.25.1,<3.0", - "python-dotenv>=1.0.0,<2.0" + "requests>=2.31.0,<3.0", + "python-dotenv>=1.0.0,<2.0" ] dev-dependencies = [ - "pytest>=6.2.2,<7.0" + "pytest>=6.2.2,<7.0" ] [tool.poetry] @@ -37,7 +37,7 @@ authors = ["Roberto Berto <463349+robertoberto@users.noreply.github.com>"] version = "0.2.0" [tool.poetry.dependencies] -python = ">=3.8" -requests = "^2.31.0" -python-dotenv = "^1.0.0" +python = ">=3.8" +requests = "^2.31.0" +python-dotenv = "^1.0.0" diff --git a/requirements.txt b/requirements.txt index 4bde791..523e2c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -requests>=2.31.0<3.0.0 -dotenv>=1.0.0<2.0.0 +requests>=2.25.1,<3.0 +python-dotenv>=1.0.0,<2.0 |