Merging upstream version 0.10.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
801f1af336
commit
d1f683ede3
10 changed files with 45 additions and 46 deletions
|
@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "eos_downloader"
|
||||
version = "v0.10.2"
|
||||
version = "v0.10.3"
|
||||
readme = "README.md"
|
||||
authors = [{ name = "Thomas Grimonet", email = "thomas.grimonet@gmail.com" }]
|
||||
maintainers = [
|
||||
|
@ -27,8 +27,19 @@ dependencies = [
|
|||
"click>=8.1.6",
|
||||
"click-help-colors>=0.9",
|
||||
"pydantic>2.0.0",
|
||||
"urllib3>=2.2.2",
|
||||
]
|
||||
keywords = [
|
||||
"eos_downloader",
|
||||
"Arista",
|
||||
"eos",
|
||||
"cvp",
|
||||
"network",
|
||||
"automation",
|
||||
"networking",
|
||||
"devops",
|
||||
"netdevops",
|
||||
]
|
||||
keywords = ["eos_downloader", "Arista", "eos", "cvp", "network", "automation", "networking", "devops", "netdevops"]
|
||||
classifiers = [
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
|
@ -51,7 +62,7 @@ requires-python = ">=3.8"
|
|||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"mypy==1.10.0",
|
||||
"mypy==1.13.0",
|
||||
"isort==5.13.2",
|
||||
"mypy-extensions>=0.4.3",
|
||||
"pre-commit>=2.20.0",
|
||||
|
@ -70,7 +81,7 @@ dev = [
|
|||
"yamllint",
|
||||
"flake8>=4.0.1",
|
||||
"pyflakes>=2.4.0",
|
||||
"bumpver>=2023.1126"
|
||||
"bumpver>=2023.1126",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
|
@ -94,9 +105,9 @@ namespaces = false
|
|||
# Version
|
||||
################################
|
||||
[tool.bumpver]
|
||||
current_version = "0.10.2"
|
||||
current_version = "0.10.3"
|
||||
version_pattern = "MAJOR.MINOR.PATCH"
|
||||
commit_message = "bump: Version {old_version} -> {new_version}"
|
||||
commit_message = "bump: Version {old_version} -> {new_version}"
|
||||
commit = true
|
||||
# No tag
|
||||
tag = false
|
||||
|
@ -107,9 +118,7 @@ push = false
|
|||
|
||||
# mypy as per https://pydantic-docs.helpmanual.io/mypy_plugin/#enabling-the-plugin
|
||||
[tool.mypy]
|
||||
plugins = [
|
||||
"pydantic.mypy",
|
||||
]
|
||||
plugins = ["pydantic.mypy"]
|
||||
follow_imports = "skip"
|
||||
ignore_missing_imports = true
|
||||
warn_redundant_casts = true
|
||||
|
@ -174,7 +183,7 @@ commands =
|
|||
description = check the code style
|
||||
commands =
|
||||
flake8 --max-line-length=165 --config=/dev/null eos_downloader
|
||||
pylint eos_downloader
|
||||
pylint --rcfile=pylintrc eos_downloader
|
||||
|
||||
[testenv:type]
|
||||
description = check typing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue