Skip to content

Commit 4fe5711

Browse files
committed
chore: bump dependency versions
1 parent 2b57da4 commit 4fe5711

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

docs/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
breathe==4.31.0
2-
sphinx==3.5.4
1+
breathe==4.32.0
2+
sphinx==4.4.0
33
sphinx_rtd_theme==1.0.0
4-
sphinxcontrib-moderncmakedomain==3.19
5-
sphinxcontrib-svg2pdfconverter==1.1.1
4+
sphinxcontrib-moderncmakedomain==3.21.4
5+
sphinxcontrib-svg2pdfconverter==1.2.0

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,15 @@ strict = true
3030
[[tool.mypy.overrides]]
3131
module = ["ghapi.*", "setuptools.*"]
3232
ignore_missing_imports = true
33+
34+
35+
[tool.pytest.ini_options]
36+
minversion = "6.0"
37+
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
38+
xfail_strict = true
39+
filterwarnings = ["error"]
40+
log_cli_level = "info"
41+
testpaths = [
42+
"tests",
43+
]
44+
timeout=300

setup.cfg

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,5 @@ zip_safe = False
4545
max-line-length = 120
4646
show_source = True
4747
exclude = .git, __pycache__, build, dist, docs, tools, venv
48-
ignore =
49-
# required for pretty matrix formatting: multiple spaces after `,` and `[`
50-
E201, E241, W504,
51-
# camelcase 'cPickle' imported as lowercase 'pickle'
52-
N813
53-
# Black conflict
54-
W503, E203
55-
56-
57-
[tool:pytest]
58-
timeout = 300
48+
extend-ignore = E203, E722, B950
49+
select = C,E,F,N,W,B,B9

tests/requirements.txt

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
numpy==1.16.6; python_version<"3.6" and sys_platform!="win32" and platform_python_implementation!="PyPy"
2-
numpy==1.19.0; platform_python_implementation=="PyPy" and sys_platform=="linux" and python_version=="3.6"
3-
numpy==1.20.0; platform_python_implementation=="PyPy" and sys_platform=="linux" and python_version=="3.7"
1+
numpy==1.21.5; platform_python_implementation=="PyPy" and sys_platform=="linux" and python_version=="3.7"
2+
numpy==1.22.2; platform_python_implementation=="PyPy" and sys_platform=="linux" and python_version=="3.8"
43
numpy==1.19.3; platform_python_implementation!="PyPy" and python_version=="3.6"
5-
numpy==1.21.3; platform_python_implementation!="PyPy" and python_version>="3.7" and python_version<"3.11"
6-
py @ git+https://github.com/pytest-dev/py; python_version>="3.11"
7-
pytest==4.6.9; python_version<"3.5"
8-
pytest==6.1.2; python_version=="3.5"
9-
pytest==6.2.4; python_version>="3.6"
4+
numpy==1.21.5; platform_python_implementation!="PyPy" and python_version=="3.7"
5+
numpy==1.22.2; platform_python_implementation!="PyPy" and python_version>="3.8" and python_version<"3.11"
6+
pytest==7.0.0
107
pytest-timeout
11-
scipy==1.2.3; platform_python_implementation!="PyPy" and python_version<"3.6"
12-
scipy==1.5.4; platform_python_implementation!="PyPy" and python_version>="3.6" and python_version<"3.10"
8+
scipy==1.5.4; platform_python_implementation!="PyPy" and python_version<"3.10"
9+
scipy==1.8.0; platform_python_implementation!="PyPy" and python_version=="3.10"

0 commit comments

Comments
 (0)