File tree Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/pre-commit/pre-commit-hooks
3- rev : v4.3 .0
3+ rev : v4.4 .0
44 hooks :
55 - id : check-ast
66 - id : check-builtin-literals
@@ -12,42 +12,42 @@ repos:
1212 - id : end-of-file-fixer
1313 - id : trailing-whitespace
1414 - repo : https://github.com/asottile/pyupgrade
15- rev : v3.0.0
15+ rev : v3.3.1
1616 hooks :
1717 - id : pyupgrade
1818 args : [ "--py37-plus" ]
1919 - repo : https://github.com/PyCQA/isort
20- rev : 5.10.1
20+ rev : 5.12.0
2121 hooks :
2222 - id : isort
2323 - repo : https://github.com/psf/black
24- rev : 22.10 .0
24+ rev : 23.1 .0
2525 hooks :
2626 - id : black
2727 args : [ --safe ]
2828 - repo : https://github.com/asottile/blacken-docs
29- rev : v1.12.1
29+ rev : 1.13.0
3030 hooks :
3131 - id : blacken-docs
32- additional_dependencies : [ black==22.10 ]
32+ additional_dependencies : [ black==23.1 ]
3333 - repo : https://github.com/pre-commit/pygrep-hooks
34- rev : v1.9 .0
34+ rev : v1.10 .0
3535 hooks :
3636 - id : rst-backticks
3737 - repo : https://github.com/tox-dev/tox-ini-fmt
38- rev : " 0.5.2 "
38+ rev : " 0.6.1 "
3939 hooks :
4040 - id : tox-ini-fmt
4141 args : [ "-p", "fix" ]
4242 - repo : https://github.com/PyCQA/flake8
43- rev : 5 .0.4
43+ rev : 6 .0.0
4444 hooks :
4545 - id : flake8
4646 additional_dependencies :
47- - flake8-bugbear==22.10.27
47+ - flake8-bugbear==23.1.20
4848 - flake8-comprehensions==3.10.1
4949 - flake8-pytest-style==1.6
5050 - flake8-spellcheck==0.28
51- - flake8-unused-arguments==0.0.12
52- - flake8-noqa==1.2.9
53- - pep8-naming==0.13.2
51+ - flake8-unused-arguments==0.0.13
52+ - flake8-noqa==1.3
53+ - pep8-naming==0.13.3
Original file line number Diff line number Diff line change 11[build-system ]
22build-backend = " hatchling.build"
3- requires = [" hatchling>=1.11.1 " , " hatch-vcs>=0.2 " ]
3+ requires = [" hatchling>=1.12.2 " , " hatch-vcs>=0.3 " ]
44
55[project ]
66name = " pytest-env"
@@ -12,8 +12,8 @@ urls.Homepage = "https://github.com/pytest-dev/pytest-env"
1212urls.Source = " https://github.com/pytest-dev/pytest-env"
1313urls.Tracker = " https://github.com/pytest-dev/pytest-env/issues"
1414requires-python = " >=3.7"
15- dependencies = [" pytest>=7.2" ]
16- optional-dependencies.test = [" coverage>=6.5 " , " pytest-mock>=3.10" ]
15+ dependencies = [" pytest>=7.2.1 " ]
16+ optional-dependencies.test = [" coverage>=7.1 " , " pytest-mock>=3.10" ]
1717keywords = [" pytest" , " env" ]
1818classifiers = [
1919 " Development Status :: 5 - Production/Stable" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ def pytest_load_initial_conftests(
1818) -> None :
1919 """Load environment variables from configuration files."""
2020 for line in early_config .getini ("env" ):
21-
2221 # INI lines e.g. D:R:NAME=VAL has two flags (R and D), NAME key, and VAL value
2322 parts = line .partition ("=" )
2423 ini_key_parts = parts [0 ].split (":" )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ passenv =
3636 PROGRAMDATA
3737skip_install = true
3838deps =
39- pre-commit>=2.20
39+ pre-commit>=3.0.4
4040commands =
4141 pre-commit run --all-files --show-diff-on-failure
4242
@@ -45,7 +45,7 @@ description = run type check on code base
4545setenv =
4646 {tty:MYPY_FORCE_COLOR = 1}
4747deps =
48- mypy ==0.982
48+ mypy ==0.991
4949commands =
5050 mypy --strict src
5151 mypy --strict tests
@@ -54,8 +54,8 @@ commands =
5454description = check that the long description is valid
5555skip_install = true
5656deps =
57- build[virtualenv]>=0.9
58- twine>=4.0.1
57+ build[virtualenv]>=0.10
58+ twine>=4.0.2
5959changedir = {toxinidir}
6060commands =
6161 python -m build -o {envtmpdir} .
You can’t perform that action at this time.
0 commit comments