Skip to content

Commit c0ade34

Browse files
committed
Release v1.4.2
1 parent edc478d commit c0ade34

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,12 @@ ____
7373
Release Notes
7474
-------------
7575

76-
### Next Release
77-
* fix "lightgray" error in `plot_trend`
78-
* better cell index checks for compatibility with spatial data
79-
* address pygam incompatibility with newer scipy versions
80-
* address fcsparser incompatibility with Numpy 2.0
81-
* use different joblib backend in buggy version
82-
* more convenient cell-name handling for integers (e.g., in spatial data)
83-
76+
### Version 1.4.2
77+
* Fix "lightgray" error in `plot_trend`
78+
* Address pygam incompatibility with newer scipy versions (automatic skip in tests, user warnings)
79+
* Address fcsparser incompatibility with NumPy 2.0 (automatic skip in tests, user warnings)
80+
* Use different joblib backend in Python 3.12+ with joblib < 1.5 to avoid ResourceTracker warnings
81+
* More convenient cell-name handling for integers (e.g., in spatial data) with automatic type conversion
8482

8583
### Version 1.4.1
8684
* update `LICENSE` file to be consistent with MIT - license

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "palantir"
7-
version = "1.4.2rc"
7+
version = "1.4.2"
88
description = "Palantir for modeling continuous cell state and cell fate choices in single cell data"
99
authors = [
1010
{name = "Palantir development team", email = "manu.talanki@gmail.com"}

src/palantir/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__version__ = importlib.metadata.version("palantir")
77
except importlib.metadata.PackageNotFoundError:
88
# Package is not installed, fall back to hardcoded version
9-
__version__ = "1.4.2rc" # Should match pyproject.toml
9+
__version__ = "1.4.2" # Should match pyproject.toml
1010

1111
__author__ = "Palantir development team"
1212
__author_email__ = "manu.talanki@gmail.com"

0 commit comments

Comments
 (0)