Skip to content

Commit 509fadf

Browse files
authored
Merge pull request #302 from aodn/fix/poetry-unfrozen-validation
Remove unfrozen package verification (for now)
2 parents 255195c + cea60b0 commit 509fadf

2 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,16 @@ jobs:
144144
# verify the wheels
145145
#----------------------------------------------
146146
#
147-
- name: Verify Unfrozen Wheel
148-
run: |
149-
python -m venv test_env_unfrozen
150-
source test_env_unfrozen/bin/activate
151-
# Install the unfrozen wheel. This WILL trigger dependency downloads.
152-
pip install dist-artifacts/*unfrozen.whl
153-
python -c "import aodn_cloud_optimised; print('Unfrozen wheel verification successful')"
154-
deactivate
155-
rm -rf test_env_unfrozen
147+
# TODO: find a faster way to do this; it is too slow/stalling completely in CICD
148+
# - name: Verify Unfrozen Wheel
149+
# run: |
150+
# python -m venv test_env_unfrozen
151+
# source test_env_unfrozen/bin/activate
152+
# # Install the unfrozen wheel. This WILL trigger dependency downloads.
153+
# poetry run pip install dist-artifacts/*unfrozen.whl
154+
# python -c "import aodn_cloud_optimised; print('Unfrozen wheel verification successful')"
155+
# deactivate
156+
# rm -rf test_env_unfrozen
156157

157158
- name: Verify Frozen Wheel
158159
run: |

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api"
77
# Pinning to <3.13 to avoid source builds; stable wheels for h5py and netCDF4 are not yet available for 3.13.
88
requires-python = ">=3.11,<3.13"
99
name = "aodn-cloud-optimised"
10-
version = "1.3.0"
10+
version = "1.3.1"
1111
description = "Cloud optimised data formats for IMOS NetCDF files and CSVs."
1212
authors = [
1313
{ name = "Laurent Besnard (AODN)", email = "laurent.besnard@utas.edu.au" },
@@ -302,7 +302,7 @@ pydantic_precommit_hook = "aodn_cloud_optimised.bin.pydantic_precommit_hook:main
302302

303303

304304
[tool.pre_commit]
305-
version = "1.3.0"
305+
version = "1.3.1"
306306
config = ".pre-commit-config.yaml"
307307

308308
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)