From 66c3f38dbc7476acc5c9cf893d48eee1e692cc00 Mon Sep 17 00:00:00 2001 From: aladinor Date: Wed, 29 Jan 2025 14:43:32 -0600 Subject: [PATCH] fixing error when printing raw2zarr version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83f9906..5200f26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: python -m pip install . --no-deps - name: Version Info run: | - python -c "import raw2zarr; print(xradar.version.version)" + python -c "import raw2zarr; print(raw2zarr.__version__)" - name: Test with pytest run: | pytest -n auto --dist loadfile --verbose --durations=15 --cov-report xml:coverage_unit.xml --cov=xradar --pyargs tests