Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre-release updates #43

Merged
merged 8 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
enableImmutableInstalls: true
nodeLinker: node-modules
12 changes: 9 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,27 @@ 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. To create a Python source package (`.tar.gz`) and the binary package (`.whl`) in the `dist/` directory, do:
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@<version>
````
trallard marked this conversation as resolved.
Show resolved Hide resolved

4. To create a Python source package (`.tar.gz`) and the binary package (`.whl`) in the `dist/` directory, do:

```bash
python -m build
```

`python setup.py sdist bdist_wheel` is deprecated and will not work for this package.

1. Check the package contents with
5. Check the package contents with

```bash
twine check dist/*
```

2. Clean the local build files with `hatch clean`
6. Clean the local build files with `hatch clean`

> [!IMPORTANT]
> The `release.yml` GitHub action will automatically publish the package to PyPI when a new GitHub release is published. Unless absolutely necessary, do not publish the package manually.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-conda-store",
"version": "2024.1.1",
"version": "2024.3.1",
"description": "A jupyterlab extension that provides a beautiful, user-friendly graphical interface for building and managing environments using ayour existing conda-store server",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -30,6 +30,7 @@
"type": "git",
"url": "https://github.com/telamonian/jupyterlab-conda-store.git"
},
"private": true,
"workspaces": [
"ui-tests"
],
Expand Down Expand Up @@ -60,7 +61,7 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@conda-store/conda-store-ui": "2024.1.1",
"@conda-store/conda-store-ui": "2024.3.1",
"@jupyterlab/application": "^4.0.9",
"@jupyterlab/apputils": "^4.1.2",
"@jupyterlab/mainmenu": "^4.0.9",
Expand Down
Loading
Loading