Skip to content

Commit

Permalink
releasing 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Dec 22, 2023
1 parent 990ba45 commit e46172b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 20 deletions.
19 changes: 2 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())))


Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lightning_utilities/__about__.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit e46172b

Please sign in to comment.