From 23842d4285f3c8ea57adb3ee6c0f885cbb358502 Mon Sep 17 00:00:00 2001 From: Leszek Hanusz Date: Mon, 20 Jan 2025 17:10:59 +0100 Subject: [PATCH 1/4] tox.ini try to force correct installation of dependencies --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 308aba00..ed09b28b 100644 --- a/tox.ini +++ b/tox.ini @@ -27,6 +27,8 @@ deps = -e.[test] ; Prevent installing issues: https://github.com/ContinuumIO/anaconda-issues/issues/542 commands = pip install -U setuptools + pip install -e .[test] + pip freeze ; run "tox -- tests -s" to show output for debugging py{39,310,311,312,py3}: pytest {posargs:tests} py{38}: pytest {posargs:tests --cov-report=term-missing --cov=gql} From aea4cda58e1da2ec4eb06bf0f39cacd18f4c8381 Mon Sep 17 00:00:00 2001 From: Leszek Hanusz Date: Mon, 20 Jan 2025 17:16:34 +0100 Subject: [PATCH 2/4] Revert "tox.ini try to force correct installation of dependencies" This reverts commit 23842d4285f3c8ea57adb3ee6c0f885cbb358502. --- tox.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/tox.ini b/tox.ini index ed09b28b..308aba00 100644 --- a/tox.ini +++ b/tox.ini @@ -27,8 +27,6 @@ deps = -e.[test] ; Prevent installing issues: https://github.com/ContinuumIO/anaconda-issues/issues/542 commands = pip install -U setuptools - pip install -e .[test] - pip freeze ; run "tox -- tests -s" to show output for debugging py{39,310,311,312,py3}: pytest {posargs:tests} py{38}: pytest {posargs:tests --cov-report=term-missing --cov=gql} From 073b67e27e00683bc0bb1456baff8176cae47656 Mon Sep 17 00:00:00 2001 From: Leszek Hanusz Date: Mon, 20 Jan 2025 17:17:03 +0100 Subject: [PATCH 3/4] Bump vcrpy to 7.0.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bda6f570..0313dc03 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ "pytest-asyncio==0.21.1", "pytest-console-scripts==1.4.1", "pytest-cov==5.0.0", - "vcrpy==4.4.0", + "vcrpy==7.0.0", "aiofiles", ] From 04e3ab3a2ddef37caba33f7dc805fa9c068ed0c3 Mon Sep 17 00:00:00 2001 From: Leszek Hanusz Date: Mon, 20 Jan 2025 17:24:57 +0100 Subject: [PATCH 4/4] Keep old vcrpy version for Python 3.8 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0313dc03..1a9918c4 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,8 @@ "pytest-asyncio==0.21.1", "pytest-console-scripts==1.4.1", "pytest-cov==5.0.0", - "vcrpy==7.0.0", + "vcrpy==4.4.0;python_version<='3.8'", + "vcrpy==7.0.0;python_version>'3.8'", "aiofiles", ]