Skip to content

Commit

Permalink
ci: remove pydantic and update tox
Browse files Browse the repository at this point in the history
  • Loading branch information
titom73 committed Aug 28, 2023
1 parent 2b18a0e commit 280feaf
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 50 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,5 @@ jobs:
run: pip install tox tox-gh-actions

- name: "Run tox for ${{ matrix.python }}"
run: tox -e testenv
# run: tox -e testenv
run: tox
98 changes: 49 additions & 49 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,61 +15,61 @@ maintainers = [
description = "Arista EOS/CVP downloader script"
license = { file = "LICENSE" }
dependencies = [
"cryptography",
"paramiko",
"requests>=2.20.0",
"requests-toolbelt",
"scp",
"tqdm",
"loguru",
"rich~=13.5.2",
"cvprac>=1.0.7",
"click~=8.1.6",
"click-help-colors~=0.9",
"pydantic>=1.10.4,<2.4.0",
"cryptography",
"paramiko",
"requests>=2.20.0",
"requests-toolbelt",
"scp",
"tqdm",
"loguru",
"rich~=13.5.2",
"cvprac>=1.0.7",
"click~=8.1.6",
"click-help-colors~=0.9",
"pydantic>=1.10.4,<2.0.0",
]
keywords = ["eos_downloader", "Arista", "eos", "cvp", "network", "automation", "networking", "devops", "netdevops"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: System :: Software Distribution',
'Topic :: Terminals',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: System :: Software Distribution',
'Topic :: Terminals',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy',
]
requires-python = ">=3.8"

[project.optional-dependencies]
dev = [
"isort==5.12.0",
"mypy==0.991",
"mypy-extensions>=0.4.3",
"pre-commit>=2.20.0",
"pylint",
"pytest>=7.1.2",
"pytest-cov>=2.11.1",
"pytest-dependency",
"pytest-html>=3.1.1",
"pytest-metadata>=1.11.0",
"pylint-pydantic>=0.1.4",
"tox==4.0.11",
"types-PyYAML",
"types-paramiko",
"types-requests",
"typing-extensions",
"yamllint",
"flake8==4.0.1",
"pyflakes==2.4.0"
"isort==5.12.0",
"mypy==0.991",
"mypy-extensions>=0.4.3",
"pre-commit>=2.20.0",
"pylint",
"pytest>=7.1.2",
"pytest-cov>=2.11.1",
"pytest-dependency",
"pytest-html>=3.1.1",
"pytest-metadata>=1.11.0",
"pylint-pydantic>=0.1.4",
"tox==4.0.11",
"types-PyYAML",
"types-paramiko",
"types-requests",
"typing-extensions",
"yamllint",
"flake8==4.0.1",
"pyflakes==2.4.0"
]

[project.urls]
Expand Down Expand Up @@ -120,8 +120,8 @@ min_version = 4.0
envlist =
clean,
lint,
type
type,
py{38,39,310}
[tox-full]
min_version = 4.0
Expand Down

0 comments on commit 280feaf

Please sign in to comment.