diff --git a/.gitignore b/.gitignore index b2ea513..4cc4f19 100644 --- a/.gitignore +++ b/.gitignore @@ -162,3 +162,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# VSCode Configs +.vscode/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index cab5000..40b4dfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dev = [ "black", "isort", "tox", - "pytest", + "pytest==7.3.2", "pre-commit", "flake8", "mypy", diff --git a/tox.ini b/tox.ini index 5b0919c..f61c42a 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ description = run the tests with pytest package = wheel wheel_build_env = .pkg deps = - pytest>=6 + pytest==7.3.2 flake8 black isort