From 3164c7c8b62f51168119068efabef926598bc3f5 Mon Sep 17 00:00:00 2001 From: Jirka Date: Fri, 22 Dec 2023 18:10:53 +0100 Subject: [PATCH] releasing `0.10.1` --- CHANGELOG.md | 19 ++----------------- requirements/{base.txt => core.txt} | 0 setup.py | 4 ++-- src/lightning_utilities/__about__.py | 2 +- 4 files changed, 5 insertions(+), 20 deletions(-) rename requirements/{base.txt => core.txt} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d4d31e3..c0a55e1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,26 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [UnReleased] - 2023-MM-DD - -### Added - -- - - -### Changed - -- - - -### Deprecated - -- - +## [0.10.1] - 2023-12-22 ### Fixed -- +- Avoid accidental namedtuple conversion in `apply_to_collection` ([#210](https://github.com/Lightning-AI/utilities/pull/210)) ## [0.10.0] - 2023-11-17 diff --git a/requirements/base.txt b/requirements/core.txt similarity index 100% rename from requirements/base.txt rename to requirements/core.txt diff --git a/setup.py b/setup.py index 4007d95e..3ede80f7 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def _load_py_module(fname: str, pkg: str = "lightning_utilities"): about = _load_py_module("__about__.py") # load basic requirements -with open(os.path.join(_PATH_REQUIRE, "base.txt")) as fp: +with open(os.path.join(_PATH_REQUIRE, "core.txt")) as fp: requirements = list(map(str, parse_requirements(fp.readlines()))) @@ -32,7 +32,7 @@ def _requirement_extras(path_req: str = _PATH_REQUIRE) -> dict: fname = os.path.basename(fpath) if fname.startswith(("_", "gha-")): continue - if fname in ("base.txt",): + if fname in ("core.txt",): continue name, _ = os.path.splitext(fname) with open(fpath) as fp: diff --git a/src/lightning_utilities/__about__.py b/src/lightning_utilities/__about__.py index ca3aca09..917eab3a 100644 --- a/src/lightning_utilities/__about__.py +++ b/src/lightning_utilities/__about__.py @@ -1,6 +1,6 @@ import time -__version__ = "0.11.0dev" +__version__ = "0.10.1" __author__ = "Lightning AI et al." __author_email__ = "pytorch@lightning.ai" __license__ = "Apache-2.0"