From a26548ec4979cb17784be0b88e63cad83f61cdbc Mon Sep 17 00:00:00 2001 From: TrisCC Date: Tue, 2 Apr 2024 12:39:40 +0200 Subject: [PATCH 1/3] Update gitignore to ignore vscode files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) 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 From 33c912b6ca0dc693457926c1c76005f67e9e0cfd Mon Sep 17 00:00:00 2001 From: TrisCC Date: Tue, 2 Apr 2024 16:17:56 +0200 Subject: [PATCH 2/3] Fix pytest version to 7.3.2 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 4a909a2784cbfd0635042ab82a2f3750e11f1441 Mon Sep 17 00:00:00 2001 From: TrisCC Date: Wed, 3 Apr 2024 11:26:25 +0200 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",