v1.16.0
Changed
- Changed default datacenter location to
FIN-03 - Migrated to
uv - Removed
datacrunch.__version__.VERSION. Use standard importlib.metadata.version() instead:from importlib.metadata import version print(version('datacrunch'))
- Migrated to Ruff for linting
- Upgraded pytest
If you are working on the library itself, do a fresh clone or upgrade your local development environment in-place:
# remove old environment
rm -rf datacrunch.egg-info/ .venv/ datacrunch_env/
# create new environment and install dependencies
uv sync
# run example
uv run python examples/simple_create_instance.pyAdded
- Added constants for
FIN-02andFIN-03.