diff options
| author | eduardormorais <eduardoromorais@gmail.com> | 2025-09-18 15:43:25 -0300 |
|---|---|---|
| committer | eduardormorais <eduardoromorais@gmail.com> | 2025-09-18 15:43:25 -0300 |
| commit | e3eb9a3fc5d787cff6acb12528022eeefe55edd1 (patch) | |
| tree | 34827f749ab1bf776ed0a5406dc1384cffbe657f /pyproject.toml | |
| parent | f25d28ab90a266c03fd966ddabc752088da080d6 (diff) | |
| download | pyvyos-e3eb9a3fc5d787cff6acb12528022eeefe55edd1.tar.gz pyvyos-e3eb9a3fc5d787cff6acb12528022eeefe55edd1.zip | |
Fix - Updating dependencies
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml index 1aa3254..8c74272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ ] description = "Python SDK for interacting with VyOS API" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", @@ -24,7 +24,8 @@ Issues = "https://github.com/vyos-contrib/pyvyos/issues" [tool.hatch.metadata] dependencies = [ "requests>=2.31.0,<3.0", - "python-dotenv>=1.0.1,<2.0" + "python-dotenv>=1.0.1,<2.0", + "urllib3>=2.5.0", ] [tool.poetry] @@ -34,13 +35,14 @@ authors = ["Roberto Berto <463349+robertoberto@users.noreply.github.com>"] version = "0.3.0" [tool.poetry.dependencies] -python = ">=3.8" +python = ">=3.9" requests = "^2.32.0" python-dotenv = "^1.0.1" +urllib3 = ">=2.5.0" [tool.poetry.group.dev.dependencies] -pytest = "^6.2.5" -pytest-cov = "^4.1.0" +pytest = ">=6.2.5,<9.0.0" +pytest-cov = ">=4.1,<6.0" pytest-env = "^0.6.2" [tool.pytest.ini_options] |
