From 95a66a51318544d676d90443732a81db16321ad4 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 10 Apr 2024 07:31:31 -0500 Subject: [PATCH 1/2] Fix min dep test --- .github/workflows/tests.yml | 8 ++++---- pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f0aa122..059c572 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,12 +34,12 @@ jobs: - name: Run the tests on pypy if: ${{ startsWith(matrix.python-version, 'pypy') }} run: | - hatch run cov:nowarn -s || hatch run test:nowarn -s --lf + hatch run cov:nowarn -s || hatch -v run test:nowarn -s --lf - name: Run the tests if: ${{ !startsWith(matrix.python-version, 'pypy') }} timeout-minutes: 15 run: | - hatch run cov:test -s || hatch run test:test -s --lf + hatch run cov:test -s || hatch -v run test:test -s --lf - uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1 coverage: @@ -76,7 +76,7 @@ jobs: dependency_type: minimum - name: Run the unit tests run: | - hatch run test:nowarn || hatch run test:nowarn --lf + hatch run test:nowarn || hatch -v run test:nowarn --lf test_prereleases: name: Test Prereleases @@ -90,7 +90,7 @@ jobs: - name: Run the tests run: | export PIP_PRE=1 - hatch run test:nowarn || hatch run test:nowarn --lf + hatch run test:nowarn || hatch -v run test:nowarn --lf make_sdist: name: Make SDist diff --git a/pyproject.toml b/pyproject.toml index f446cad..0547456 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,12 +24,12 @@ classifiers = [ keywords = ["testing", "documentation", "links", "html"] requires-python = ">=3.8" dependencies = [ - "docutils>=0.20.1", - "html5lib>=1.1", + "docutils", + "html5lib", "nbconvert>=7.1", "nbformat>=5.0.2", "pytest >=7.0,<9", - "requests >=2.22", + "requests", ] [[project.authors]] From bedf307fb9afbf764b8e60affa08945ff050be56 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 10 Apr 2024 07:35:24 -0500 Subject: [PATCH 2/2] deconflict versions --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0547456..7ae0ed6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,12 +24,12 @@ classifiers = [ keywords = ["testing", "documentation", "links", "html"] requires-python = ">=3.8" dependencies = [ - "docutils", - "html5lib", + "docutils>=0.20.1", + "html5lib>=1.1", "nbconvert>=7.1", - "nbformat>=5.0.2", + "nbformat>=5.1", "pytest >=7.0,<9", - "requests", + "requests >=2.22", ] [[project.authors]]