From aa1e74a73cbeea43e5e9085bf2289e86d50d5543 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 4 Apr 2024 06:56:29 -0500 Subject: [PATCH] Set all min deps (#565) --- .github/workflows/test.yml | 2 +- pyproject.toml | 21 +++++++++++---------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 729ea296..95432e00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -100,7 +100,7 @@ jobs: - uses: actions/checkout@v4 - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: - dependency_type: pre + dependency_type: minimum - name: Run the unit tests run: | hatch run test:nowarn || hatch run test:nowarn --lf diff --git a/pyproject.toml b/pyproject.toml index 67d899ec..320c1f2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,18 +23,19 @@ urls = {Homepage = "https://jupyter.org"} requires-python = ">=3.8" dynamic = ["version"] dependencies = [ - "click", - "ghapi<=1.0.4", + "click>=8.0.2", + "ghapi>=1.0,<=1.0.4", + "numpy>=1.24.4,<2.0.0", "github-activity~=0.2", - "importlib_resources", + "importlib_resources>=5.11", "jsonschema>=3.0.1", - "mdformat", - "packaging", - "pkginfo", - "pypiserver", - "pipx", - "requests", - "requests_cache", + "mdformat>=0.7.5", + "packaging>=23.0", + "pkginfo>=1.7.1", + "pypiserver>=2.0.1", + "pipx>=1.3.3", + "requests>=2.2", + "requests_cache>=1.1", "toml~=0.10", ]