From 922707df150a90411beb6fd554d89675282ae98c Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Tue, 29 Aug 2023 07:27:37 -0600 Subject: [PATCH] Use three digits for ~= v0.* deps (#1211) * deps: use three digits for ~= v0.* deps * ci: remove `--strict` from bench check --- .github/workflows/continuous-integration.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a56f2269e..2bd4cd23e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -169,4 +169,4 @@ jobs: - name: Set asv machine run: asv machine --yes - name: Check benchmarks - run: asv run -a repeat=1 -a rounds=1 --strict HEAD + run: asv run -a repeat=1 -a rounds=1 HEAD diff --git a/pyproject.toml b/pyproject.toml index dd314a27b..77ef52d89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,16 +28,16 @@ dependencies = [ dynamic = ["version"] [project.optional-dependencies] -bench = ["asv~=0.5", "virtualenv~=20.22"] +bench = ["asv~=0.6.0", "packaging~=23.1", "virtualenv~=20.22"] docs = [ "Sphinx~=6.2", "ipython~=8.12", "jinja2<4.0", "jupyter~=1.0", - "nbsphinx~=0.9", + "nbsphinx~=0.9.0", "pydata-sphinx-theme~=0.13", "sphinx-autobuild==2021.3.14", - "sphinx-design~=0.4", + "sphinx-design~=0.5.0", "sphinxcontrib-fulltoc~=1.2", ] jinja2 = ["jinja2<4.0"] @@ -55,7 +55,7 @@ test = [ "pre-commit~=3.2", "pytest-cov~=4.0", "pytest-mock~=3.10", - "pytest-recording~=0.13", + "pytest-recording~=0.13.0", "pytest~=7.3", "ruff==0.0.285", "types-html5lib~=1.1",