dataframely 2.6.0__tar.gz → 2.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/build.yml +9 -9
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/chore.yml +1 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/ci.yml +4 -4
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/copilot-setup-steps.yml +2 -2
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/nightly.yml +2 -2
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/workflows/scorecard.yml +3 -3
- dataframely-2.8.0/.readthedocs.yml +14 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/Cargo.lock +804 -260
- {dataframely-2.6.0 → dataframely-2.8.0}/PKG-INFO +1 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/__init__.py +1 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_base_schema.py +22 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_compat.py +7 -3
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_rule.py +23 -6
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/__init__.py +2 -3
- dataframely-2.8.0/dataframely/_storage/_fsspec.py +18 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/parquet.py +9 -11
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/collection/collection.py +2 -3
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/datetime.py +10 -6
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/decimal.py +13 -4
- dataframely-2.8.0/dataframely/experimental/__init__.py +6 -0
- dataframely-2.8.0/dataframely/experimental/infer_schema.py +185 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/filter_result.py +25 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/random.py +3 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/schema.py +7 -4
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/storage.py +2 -13
- dataframely-2.8.0/docs/api/experimental/index.rst +10 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/index.rst +9 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/faq.md +8 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/serialization.md +4 -4
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/migration/index.md +6 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/quickstart.md +21 -7
- {dataframely-2.6.0 → dataframely-2.8.0}/pixi.lock +11031 -11582
- {dataframely-2.6.0 → dataframely-2.8.0}/pixi.toml +10 -10
- {dataframely-2.6.0 → dataframely-2.8.0}/pyproject.toml +1 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/rust-toolchain.toml +1 -1
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_filter_validate.py +54 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_repr.py +8 -2
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_storage.py +44 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_decimal.py +28 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_alias.py +20 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_pyarrow.py +8 -0
- dataframely-2.8.0/tests/experimental/test_infer_schema.py +403 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/failure_info/test_storage.py +32 -4
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_filter.py +32 -0
- dataframely-2.8.0/tests/schema/test_read_write_parquet.py +61 -0
- dataframely-2.8.0/tests/schema/test_rule_implementation.py +101 -0
- dataframely-2.8.0/tests/storage/test_fsspec.py +26 -0
- dataframely-2.6.0/.readthedocs.yml +0 -12
- dataframely-2.6.0/tests/schema/test_read_write_parquet.py +0 -27
- dataframely-2.6.0/tests/schema/test_rule_implementation.py +0 -41
- {dataframely-2.6.0 → dataframely-2.8.0}/.copier-answers.yml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.envrc +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.gitattributes +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/CODEOWNERS +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/copilot-instructions.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/dependabot.yml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/instructions/tests.instructions.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.github/release-drafter.yml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.gitignore +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.pre-commit-config.yaml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.prettierignore +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/.prettierrc +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/Cargo.toml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/LICENSE +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/README.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/SECURITY.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_deprecation.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_filter.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_match_to_schema.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_native.pyi +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_plugin.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_polars.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_pydantic.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_serialization.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/_exc.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/constants.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_storage/delta.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/_typing.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/collection/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/collection/_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/collection/filter_result.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/_mixins.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/_registry.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/_utils.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/any.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/array.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/binary.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/bool.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/categorical.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/enum.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/float.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/integer.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/list.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/object.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/string.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/columns/struct.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/config.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/exc.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/functional.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/py.typed +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/const.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/factory.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/mask.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/dataframely/testing/rules.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docker-compose.yml +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_static/custom.css +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_static/favicon.ico +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_templates/autosummary/class.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_templates/autosummary/method.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_templates/classes/column.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_templates/classes/error.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/_templates/classes/filter_result.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/generation.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/io.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/metadata.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/operations.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/collection/validation.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/columns/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/errors/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/filter_result/failure_info.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/filter_result/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/misc/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/conversion.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/generation.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/index.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/io.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/metadata.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/api/schema/validation.rst +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/conf.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/css/custom.css +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/development.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/examples/index.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/examples/real-world.ipynb +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/column-metadata.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/data-generation.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/index.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/lazy-validation.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/primary-keys.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/features/sql-generation.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/index.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/guides/migration/v1-v2.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/docs/index.md +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/lib.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/polars_plugin/mod.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/polars_plugin/rule_failure.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/polars_plugin/utils.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/polars_plugin/validation_error.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/regex/errdefs.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/regex/mod.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/src/regex/repr.rs +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/benches/conftest.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/benches/test_collection.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/benches/test_failure.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/benches/test_schema.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_cast.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_collection_future_annotations.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_create_empty.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_filter_one_to_n.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_ignore_in_filter.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_implementation.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_join.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_matches.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_optional_members.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_propagate_row_failures.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_sample.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_serialization.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/collection/test_validate_input.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_any.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_array.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_binary.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_datetime.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_enum.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_float.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_integer.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_list.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_object.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_string.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/column_types/test_struct.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_check.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_default_dtypes.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_matches.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_metadata.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_polars_schema.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_rules.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_sample.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_sqlalchemy_columns.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_str.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/columns/test_utils.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/conftest.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/core_validation/__init__.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/core_validation/test_match_to_schema.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/core_validation/test_rule_evaluation.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/functional/test_concat.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/functional/test_relationships.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_base.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_cast.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_create_empty.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_create_empty_if_none.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_inheritance.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_matches.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_repr.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_sample.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_serialization.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_storage.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/schema/test_validate.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/storage/test_delta.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_compat.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_config.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_deprecation.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_factory.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_native_regex.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_pydantic.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_random.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_serialization.py +0 -0
- {dataframely-2.6.0 → dataframely-2.8.0}/tests/test_typing.py +0 -0
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
permissions:
|
|
14
14
|
contents: read
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
17
17
|
with:
|
|
18
18
|
fetch-depth: 0
|
|
19
19
|
- name: Set up pixi
|
|
20
|
-
uses: prefix-dev/setup-pixi@
|
|
20
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
21
21
|
with:
|
|
22
22
|
environments: build
|
|
23
23
|
- name: Set version
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
- name: Build project
|
|
26
26
|
run: pixi run -e build build-sdist
|
|
27
27
|
- name: Upload package
|
|
28
|
-
uses: actions/upload-artifact@
|
|
28
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
|
29
29
|
with:
|
|
30
30
|
name: sdist
|
|
31
31
|
path: dist/*
|
|
@@ -48,20 +48,20 @@ jobs:
|
|
|
48
48
|
- target-platform: win-64
|
|
49
49
|
os: windows-latest
|
|
50
50
|
steps:
|
|
51
|
-
- uses: actions/checkout@
|
|
51
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
52
52
|
with:
|
|
53
53
|
fetch-depth: 0
|
|
54
54
|
- name: Set up pixi
|
|
55
|
-
uses: prefix-dev/setup-pixi@
|
|
55
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
56
56
|
with:
|
|
57
57
|
environments: build
|
|
58
58
|
- name: Set version
|
|
59
59
|
run: pixi run -e build set-version
|
|
60
|
-
- uses: actions/setup-python@
|
|
60
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
61
61
|
with:
|
|
62
62
|
python-version: "3.10"
|
|
63
63
|
- name: Build wheel
|
|
64
|
-
uses: PyO3/maturin-action@
|
|
64
|
+
uses: PyO3/maturin-action@04ac600d27cdf7a9a280dadf7147097c42b757ad # v1.50.1
|
|
65
65
|
with:
|
|
66
66
|
command: build
|
|
67
67
|
args: --out dist --release
|
|
@@ -70,7 +70,7 @@ jobs:
|
|
|
70
70
|
- name: Check package
|
|
71
71
|
run: pixi run -e build check-wheel
|
|
72
72
|
- name: Upload package
|
|
73
|
-
uses: actions/upload-artifact@
|
|
73
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
|
74
74
|
with:
|
|
75
75
|
name: wheel-${{ matrix.target-platform }}
|
|
76
76
|
path: dist/*
|
|
@@ -84,7 +84,7 @@ jobs:
|
|
|
84
84
|
id-token: write
|
|
85
85
|
environment: pypi
|
|
86
86
|
steps:
|
|
87
|
-
- uses: actions/download-artifact@
|
|
87
|
+
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
|
88
88
|
with:
|
|
89
89
|
path: dist
|
|
90
90
|
merge-multiple: true
|
|
@@ -58,7 +58,7 @@ jobs:
|
|
|
58
58
|
pull-requests: write
|
|
59
59
|
steps:
|
|
60
60
|
- name: ${{ github.event_name == 'pull_request_target' && 'Assign labels' || 'Update release draft' }}
|
|
61
|
-
uses: release-drafter/release-drafter@
|
|
61
|
+
uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0
|
|
62
62
|
with:
|
|
63
63
|
disable-releaser: ${{ github.event_name == 'pull_request_target' }}
|
|
64
64
|
disable-autolabeler: ${{ github.event_name == 'push' }}
|
|
@@ -19,12 +19,12 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout branch
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
23
23
|
with:
|
|
24
24
|
# needed for 'pre-commit-mirrors-insert-license'
|
|
25
25
|
fetch-depth: 0
|
|
26
26
|
- name: Set up pixi
|
|
27
|
-
uses: prefix-dev/setup-pixi@
|
|
27
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
28
28
|
with:
|
|
29
29
|
environments: default lint polars-minimal
|
|
30
30
|
- name: Install Rust
|
|
@@ -61,9 +61,9 @@ jobs:
|
|
|
61
61
|
with_optionals: false
|
|
62
62
|
steps:
|
|
63
63
|
- name: Checkout branch
|
|
64
|
-
uses: actions/checkout@
|
|
64
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
65
65
|
- name: Set up pixi
|
|
66
|
-
uses: prefix-dev/setup-pixi@
|
|
66
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
67
67
|
with:
|
|
68
68
|
environments: ${{ matrix.environment }}
|
|
69
69
|
# FIXME: Remove when `s3_server` fixture does not start a process anymore
|
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
id-token: write
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout branch
|
|
16
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
17
17
|
- name: Set up pixi
|
|
18
|
-
uses: prefix-dev/setup-pixi@
|
|
18
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
19
19
|
with:
|
|
20
20
|
environments: default
|
|
21
21
|
- name: Install Rust
|
|
@@ -23,9 +23,9 @@ jobs:
|
|
|
23
23
|
os: [ubuntu-latest, windows-latest]
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout branch
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
27
27
|
- name: Set up pixi
|
|
28
|
-
uses: prefix-dev/setup-pixi@
|
|
28
|
+
uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4
|
|
29
29
|
with:
|
|
30
30
|
environments: nightly
|
|
31
31
|
- name: Install polars nightly
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
|
|
36
36
|
steps:
|
|
37
37
|
- name: "Checkout code"
|
|
38
|
-
uses: actions/checkout@
|
|
38
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
39
39
|
with:
|
|
40
40
|
persist-credentials: false
|
|
41
41
|
|
|
@@ -65,7 +65,7 @@ jobs:
|
|
|
65
65
|
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
|
|
66
66
|
# format to the repository Actions tab.
|
|
67
67
|
- name: "Upload artifact"
|
|
68
|
-
uses: actions/upload-artifact@
|
|
68
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
|
69
69
|
with:
|
|
70
70
|
name: SARIF file
|
|
71
71
|
path: results.sarif
|
|
@@ -74,6 +74,6 @@ jobs:
|
|
|
74
74
|
# Upload the results to GitHub's code scanning dashboard (optional).
|
|
75
75
|
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
|
|
76
76
|
- name: "Upload to code-scanning"
|
|
77
|
-
uses: github/codeql-action/upload-sarif@
|
|
77
|
+
uses: github/codeql-action/upload-sarif@89a39a4e59826350b863aa6b6252a07ad50cf83e # v3.29.5
|
|
78
78
|
with:
|
|
79
79
|
sarif_file: results.sarif
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
build:
|
|
3
|
+
os: ubuntu-24.04
|
|
4
|
+
tools:
|
|
5
|
+
python: mambaforge-latest
|
|
6
|
+
commands:
|
|
7
|
+
- mamba install -c conda-forge -c nodefaults pixi
|
|
8
|
+
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
9
|
+
- PATH=$HOME/.cargo/bin:$PATH rustup install
|
|
10
|
+
- PATH=$HOME/.cargo/bin:$PATH pixi run -e docs readthedocs
|
|
11
|
+
sphinx:
|
|
12
|
+
configuration: docs/conf.py
|
|
13
|
+
formats:
|
|
14
|
+
- pdf
|