utilities icon indicating copy to clipboard operation
utilities copied to clipboard

Common Python utilities and GitHub Actions in Lightning Ecosystem

Results 9 utilities issues
Sort by recently updated
recently updated
newest added

Before submitting - [x] Was this discussed/agreed via a Github issue? (no need for typos and docs improvements) - [x] Did you read the [contributor guideline](https://github.com/Lightning-AI/lightning/blob/master/.github/CONTRIBUTING.md), Pull Request section? -...

package
tests

## 🐛 Bug Some of our dataloaders use custom `Sequence` subclasses, that cause errors in `apply_to_collection`. The reason for this is, that these classes won't roundtrip, which is assumed by...

bug
help wanted

## 🚀 Feature Create a workflow that collects and merges pytest results from CI runs across different operating systems, acclerators and software versions. With this feature implemented, we will be...

enhancement
help wanted
ci/cd

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. Release notes Sourced from actions/download-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....

ci/cd

## Bug `src/lightning_utilities/core/imports.py` imports pkg_resources, which is deprecated (since at least 2020) in favor of [importlib.resources](https://docs.python.org/3/library/importlib.html#module-importlib.resources), [importlib.metadata](https://docs.python.org/3/library/importlib.metadata.html), and their backports ([importlib_resources](https://pypi.org/project/importlib_resources), [importlib_metadata](https://pypi.org/project/importlib_metadata)). See [here](https://setuptools.pypa.io/en/latest/pkg_resources.html). ### To Reproduce ```bash PYTHONWARNINGS=default::DeprecationWarning python...

bug
good first issue
help wanted
priority: 1

## Motivation When running `apply_to_collection` on a `dataclass`, cached properties do not get modified. This can cause subtle issues: for example, suppose I initialize a `dataclass` on CPU in a...

enhancement
help wanted

## 🐛 Bug An empty egg directory on `sys.path` can crash `RequirementCache` probing. My impression of the purpose of `RequirementCache` is to be a exception-free way to probe for available...

bug
help wanted

updates: - [github.com/executablebooks/mdformat: 0.7.22 → 1.0.0](https://github.com/executablebooks/mdformat/compare/0.7.22...1.0.0) - [github.com/JoC0de/pre-commit-prettier: b3e25fa39aa676c36bc18eb9eae6f26d9bb63f39 → v3.7.4](https://github.com/JoC0de/pre-commit-prettier/compare/b3e25fa39aa676c36bc18eb9eae6f26d9bb63f39...v3.7.4) - [github.com/astral-sh/ruff-pre-commit: v0.12.11 → v0.14.10](https://github.com/astral-sh/ruff-pre-commit/compare/v0.12.11...v0.14.10) - [github.com/sphinx-contrib/sphinx-lint: v1.0.0 → v1.0.2](https://github.com/sphinx-contrib/sphinx-lint/compare/v1.0.0...v1.0.2) - [github.com/tox-dev/pyproject-fmt: v2.6.0 → v2.11.1](https://github.com/tox-dev/pyproject-fmt/compare/v2.6.0...v2.11.1) ---- 📚 Documentation preview...

ci/cd
tests

## What does this PR do? Adds support for Python 3.14 across the Lightning Utilities repository. ### Changes Made - **setup.py**: Added Python 3.14 classifier - **CI workflows**: Updated testing...

enhancement
ci/cd
package