Skip to content

Commit 253bd98

Browse files
fix(deps): update openapitools/openapi-generator-cli docker tag to v7.14.0
1 parent a3b95b5 commit 253bd98

File tree

6 files changed

+456
-229
lines changed

6 files changed

+456
-229
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
55

66
- API version: v4.0.13.2932
77
- Package version: 1.1.0 <!--- x-release-please-version -->
8-
- Generator version: 7.12.0
8+
- Generator version: 7.14.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
## Requirements.
1212

13-
Python 3.8+
13+
Python 3.9+
1414

1515
## Installation & Usage
1616
### pip install

pyproject.toml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
1-
[tool.poetry]
1+
[project]
22
name = "sonarr"
33
version = "1.1.0" # x-release-please-version
44
description = "Sonarr"
5-
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
5+
authors = [
6+
{name = "OpenAPI Generator Community",email = "team@openapitools.org"},
7+
]
68
license = "GPL-3.0"
79
readme = "README.md"
8-
repository = "https://github.com/devopsarr/sonarr-py"
910
keywords = ["OpenAPI", "OpenAPI-Generator", "Sonarr"]
10-
include = ["sonarr/py.typed"]
11+
requires-python = ">=3.9"
1112

12-
[tool.poetry.dependencies]
13-
python = "^3.8"
13+
dependencies = [
14+
"urllib3 (>=2.1.0,<3.0.0)",
15+
"python-dateutil (>=2.8.2)",
16+
"pydantic (>=2)",
17+
"typing-extensions (>=4.7.1)"
18+
]
1419

15-
urllib3 = ">= 1.25.3, < 3.0.0"
16-
python-dateutil = ">= 2.8.2"
17-
pydantic = ">= 2"
18-
typing-extensions = ">= 4.7.1"
20+
[project.urls]
21+
Repository = "https://github.com/devopsarr/sonarr-py"
22+
23+
[tool.poetry]
24+
requires-poetry = ">=2.0"
1925

20-
[tool.poetry.dev-dependencies]
26+
[tool.poetry.group.dev.dependencies]
2127
pytest = ">= 7.2.1"
2228
pytest-cov = ">= 2.8.1"
2329
tox = ">= 3.9.0"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
urllib3 >= 1.25.3, < 3.0.0
1+
urllib3 >= 2.1.0, < 3.0.0
22
python_dateutil >= 2.8.2
33
pydantic >= 2
44
typing-extensions >= 4.7.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "sonarr-py"
2424
VERSION = "1.1.0" # x-release-please-version
25-
PYTHON_REQUIRES = ">= 3.8"
25+
PYTHON_REQUIRES = ">= 3.9"
2626
REQUIRES = [
27-
"urllib3 >= 1.25.3, < 3.0.0",
27+
"urllib3 >= 2.1.0, < 3.0.0",
2828
"python-dateutil >= 2.8.2",
2929
"pydantic >= 2",
3030
"typing-extensions >= 4.7.1",

0 commit comments

Comments
 (0)