diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c30e234..124c9f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -278,6 +278,8 @@ jobs: if: always() needs: - base_setup + - base_setup_minimum + - base_setup_pre - test_lint - check_links - binder_link diff --git a/pyproject.toml b/pyproject.toml index 5ded738..99331c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ source = "nodejs" [tool.hatch.envs.default.scripts] check_minimum = "python -c 'from jupyter_core import __version__; assert __version__ == \"4.12.0\"'" -check_pre = "python -c 'import os; assert os.environ[\"PIP_CONSTRAINT\"]'" +check_pre = "python -c 'import os; assert os.environ[\"PIP_PRE\"] == \"1\"'" [tool.hatch.envs.typing] dependencies = ["pre-commit"]