Skip to content

Commit 2bb0060

Browse files
Merge pull request #50 from renan-r-santos/bump-version
chore: Bump version number to 0.6.2
2 parents c0c85c9 + 3189021 commit 2bb0060

File tree

6 files changed

+1556
-970
lines changed

6 files changed

+1556
-970
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
pixi-version: ["0.30.0", "0.40.1"]
15+
pixi-version: ['0.30.0', '0.41.4']
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Checkout repo
@@ -48,4 +48,4 @@ jobs:
4848

4949
- name: Some tests failed
5050
if: ${{ contains(needs.*.result, 'failure') }}
51-
run: exit 1
51+
run: exit 1

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pixi-kernel",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Jupyter kernels using Pixi for reproducible notebooks.",
55
"keywords": [
66
"kernel",
@@ -54,30 +54,30 @@
5454
"watch:labextension": "jupyter labextension watch ."
5555
},
5656
"dependencies": {
57-
"@jupyterlab/application": "^4.3.4",
58-
"@jupyterlab/coreutils": "^6.3.4",
59-
"@jupyterlab/notebook": "^4.3.4",
60-
"@jupyterlab/services": "^7.3.4",
61-
"@rjsf/utils": "^5.23.2",
62-
"react": "^18.3.1"
57+
"@jupyterlab/application": "^4.3.5",
58+
"@jupyterlab/coreutils": "^6.3.5",
59+
"@jupyterlab/notebook": "^4.3.5",
60+
"@jupyterlab/services": "^7.3.5",
61+
"@rjsf/utils": "^5.24.3",
62+
"react": "^18.3.0"
6363
},
6464
"devDependencies": {
65-
"@eslint/eslintrc": "^3.2.0",
66-
"@eslint/js": "^9.17.0",
67-
"@jupyterlab/builder": "^4.3.4",
65+
"@eslint/eslintrc": "^3.3.0",
66+
"@eslint/js": "^9.21.0",
67+
"@jupyterlab/builder": "^4.3.5",
6868
"@types/json-schema": "^7.0.15",
69-
"@types/react": "^18.3.1",
69+
"@types/react": "^18.3.10",
7070
"@types/react-addons-linked-state-mixin": "^0.14.27",
71-
"@typescript-eslint/eslint-plugin": "^8.18.1",
72-
"@typescript-eslint/parser": "^8.18.1",
73-
"eslint": "^9.17.0",
74-
"eslint-config-prettier": "^9.1.0",
75-
"eslint-plugin-prettier": "^5.2.1",
71+
"@typescript-eslint/eslint-plugin": "^8.24.1",
72+
"@typescript-eslint/parser": "^8.24.1",
73+
"eslint": "^9.21.0",
74+
"eslint-config-prettier": "^10.0.1",
75+
"eslint-plugin-prettier": "^5.2.3",
7676
"npm-run-all2": "^7.0.2",
77-
"prettier": "^3.4.2",
77+
"prettier": "^3.5.2",
7878
"rimraf": "^6.0.1",
7979
"source-map-loader": "^5.0.0",
80-
"typescript": "~5.7.2"
80+
"typescript": "~5.7.3"
8181
},
8282
"jupyterlab": {
8383
"discovery": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pixi-kernel"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "Jupyter kernels using Pixi for reproducible notebooks"
55
license = { text = "MIT" }
66
authors = [

tests/unit/test_readiness.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,13 @@ async def test_empty_project(kwargs: dict):
7878
assert not (cwd / "pyproject.toml").exists(), "You should not have a pyproject.toml file in /"
7979

8080
result = await verify_env_readiness(**kwargs)
81-
assert (
82-
"could not find pixi.toml or pyproject.toml which is configured to use pixi"
83-
in result.failure()
84-
)
81+
assert "could not find pixi.toml or pyproject.toml" in result.failure()
8582

8683

8784
async def test_bad_pixi_toml(kwargs: dict):
8885
kwargs["cwd"] = data_dir / "bad_pixi_toml"
8986
result = await verify_env_readiness(**kwargs)
90-
assert "failed to parse project" in result.failure() or "unknown field" in result.failure()
87+
assert "failed to parse project" in result.failure() or "Error" in result.failure()
9188

9289

9390
@pytest.mark.usefixtures("_patch_pixi_info_no_default_env")

0 commit comments

Comments
 (0)