From fb15105f20ddc5edad9b30db5d27045e2e553d40 Mon Sep 17 00:00:00 2001 From: Tania Allard Date: Wed, 19 Jun 2024 13:50:12 +0100 Subject: [PATCH] :memo: Update release docs --- RELEASE.md | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 39b9f9d..295ef5a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -18,7 +18,7 @@ All the Python packaging instructions in the `pyproject.toml` file to wrap your > [!IMPORTANT] > There is no need to update the version in `pyproject.toml` as it is automatically updated by `hatch` when generating the package. -3. Optional - if there is a newer release of `conda-store-ui`, update the `conda-store-ui` dependency in the package.json file. +3. Optional - if there is a newer release of `conda-store-ui`, update the `conda-store-ui` dependency in the `package.json` file. ```bash yarn upgrade @conda-store/conda-store-ui@ @@ -27,7 +27,7 @@ All the Python packaging instructions in the `pyproject.toml` file to wrap your 4. To create a Python source package (`.tar.gz`) and the binary package (`.whl`) in the `dist/` directory, do: ```bash - python -m build + hatch build ``` `python setup.py sdist bdist_wheel` is deprecated and will not work for this package. diff --git a/pyproject.toml b/pyproject.toml index b245e72..66d8e60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ test = [ "pytest-cov", "pytest-tornasync" ] +dev = ["hatch"] [project.urls] Homepage = "https://github.com/conda-incubator/jupyterlab-conda-store"