From c4de96ec64193cd45a223129d74b029a69b2b730 Mon Sep 17 00:00:00 2001 From: Aditya Goel Date: Thu, 3 Oct 2024 14:54:45 +0100 Subject: [PATCH 1/2] Add back source distributions --- pixi.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pixi.toml b/pixi.toml index 71cb120..0aee9f7 100644 --- a/pixi.toml +++ b/pixi.toml @@ -32,7 +32,7 @@ docs = "cd docs && make html" [feature.build.dependencies] python-build = "*" [feature.build.tasks] -build-wheel = "python -m build --no-isolation --wheel ." +build-wheel = "python -m build --no-isolation ." [feature.test.dependencies] pytest = ">=6" @@ -51,9 +51,9 @@ test-coverage = "pytest --cov=ndonnx --cov-report=xml --cov-report=term-missing" [feature.test.tasks.arrayapitests] cmd = "pytest --max-examples 16 api-coverage-tests/array_api_tests/ -v -rfX --json-report --json-report-file=api-coverage-tests.json -n auto --disable-deadline --disable-extension linalg --skips-file=skips.txt --xfails-file=xfails.txt --hypothesis-seed=0" [feature.test.tasks.arrayapitests.env] -ARRAY_API_TESTS_MODULE="ndonnx" -ARRAY_API_TESTS_VERSION="2023.12" -ARRAY_API_TESTS_SKIP_DTYPES="complex64,complex128" +ARRAY_API_TESTS_MODULE = "ndonnx" +ARRAY_API_TESTS_VERSION = "2023.12" +ARRAY_API_TESTS_SKIP_DTYPES = "complex64,complex128" [feature.lint.dependencies] From c8fc64f7072049776cd657834d638747b2ff72be Mon Sep 17 00:00:00 2001 From: Aditya Goel Date: Thu, 3 Oct 2024 15:05:33 +0100 Subject: [PATCH 2/2] Update change log --- CHANGELOG.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 24ef962..8b477ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,12 @@ Changelog ========= +0.9.2 (2024-10-03) +------------------ + +- Technical release with source distribution. + + 0.9.1 (2024-10-01) ------------------