diff --git a/asv.conf.json b/asv.conf.json index 768214da..0ae16e29 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -71,7 +71,7 @@ // The Pythons you'd like to test against. If not provided, defaults // to the current version of Python used to run `asv`. "pythons": [ - "3.14" + "3.13" ], // The list of conda channel names to be searched for benchmark diff --git a/tox.ini b/tox.ini index 280b1eaa..555b7d2e 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,9 @@ deps = # NOTE: Keep playwright is sync with the version in requirements-ci.txt # Othrwise we get error: # playwright._impl._errors.Error: BrowserType.launch: Executable doesn't exist at /home/runner/.cache/ms-playwright/chromium-1140/chrome-linux/chrome - playwright==1.55.0 + !py38: playwright==1.55.0 + # For py38 run specific old version + py38: playwright==1.48.0 pydantic requests types-requests