-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies and python versions for tests
- Loading branch information
1 parent
19acbc1
commit c6e273b
Showing
10 changed files
with
51 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# PyCharm | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
black==24.4.2 | ||
bumpversion==0.5.3 | ||
flake8==3.8.3 | ||
isort==4.3.21 | ||
mypy==0.982 | ||
pytest>6.0.0,<7.0.0 | ||
pytest-cov==2.10.1 | ||
tox==3.18.0 | ||
tqdm>=4.41.0,<5.0.0 | ||
twine>=4.0.2,<5.0.0 | ||
wheel>=0.35.1 | ||
black==24.8.0 | ||
bumpversion>=0.6.0,<1.0.0 | ||
flake8>=7.1.1,<8.0.0 | ||
isort>=5.13.2,<6.0.0 | ||
mypy>=1.11.2,<2.0.0 | ||
pytest>=8.3.2,<9.0.0 | ||
pytest-cov>=5.0.0,<6.0.0 | ||
tox>=4.18.0,<5.0.0 | ||
tqdm>=4.66.5,<5.0.0 | ||
twine>=5.1.1,<6.0.0 | ||
wheel>=0.44.0,<1.0.0 | ||
types-requests>2.32.0,<3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[tox] | ||
envlist = | ||
lint | ||
py{36,37,38,39} | ||
py{38,39,310,311,312} | ||
|
||
[testenv] | ||
passenv = | ||
GITHUB_TOKEN | ||
deps = -r{toxinidir}/requirements-dev.txt | ||
commands = | ||
py{36,37,38,39}: python -m pytest tests/ | ||
py{38,39,310,311,312}: python -m pytest tests/ | ||
|
||
[testenv:lint] | ||
extras=linter | ||
commands = | ||
black --check {toxinidir}/vvm {toxinidir}/tests | ||
flake8 {toxinidir}/vvm {toxinidir}/tests | ||
isort --check-only --diff --recursive {toxinidir}/vvm {toxinidir}/tests | ||
mypy --disallow-untyped-defs {toxinidir}/vvm | ||
isort --check-only --diff {toxinidir}/vvm {toxinidir}/tests | ||
mypy --disallow-untyped-defs {toxinidir}/vvm --implicit-optional |