Skip to content

fix(deps): update dependency sonarr/sonarr to v4.0.14.2939 #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ This Python package is automatically generated by the [OpenAPI Generator](https:

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

## Requirements.

Python 3.8+
Python 3.9+

## Installation & Usage
### pip install
Expand Down
28 changes: 17 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
[tool.poetry]
[project]
name = "sonarr"
version = "1.1.0" # x-release-please-version
description = "Sonarr"
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
authors = [
{name = "OpenAPI Generator Community",email = "team@openapitools.org"},
]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/devopsarr/sonarr-py"
keywords = ["OpenAPI", "OpenAPI-Generator", "Sonarr"]
include = ["sonarr/py.typed"]
requires-python = ">=3.9"

[tool.poetry.dependencies]
python = "^3.8"
dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pydantic (>=2)",
"typing-extensions (>=4.7.1)"
]

urllib3 = ">= 1.25.3, < 3.0.0"
python-dateutil = ">= 2.8.2"
pydantic = ">= 2"
typing-extensions = ">= 4.7.1"
[project.urls]
Repository = "https://github.com/devopsarr/sonarr-py"

[tool.poetry]
requires-poetry = ">=2.0"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 1.25.3, < 3.0.0
urllib3 >= 2.1.0, < 3.0.0
python_dateutil >= 2.8.2
pydantic >= 2
typing-extensions >= 4.7.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# http://pypi.python.org/pypi/setuptools
NAME = "sonarr-py"
VERSION = "1.1.0" # x-release-please-version
PYTHON_REQUIRES = ">= 3.8"
PYTHON_REQUIRES = ">= 3.9"
REQUIRES = [
"urllib3 >= 1.25.3, < 3.0.0",
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
Expand Down
Loading