File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7373Release 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " palantir"
7- version = " 1.4.2rc "
7+ version = " 1.4.2 "
88description = " Palantir for modeling continuous cell state and cell fate choices in single cell data"
99authors = [
1010 {name = " Palantir development team" , email = " manu.talanki@gmail.com" }
Original file line number Diff line number Diff line change 66 __version__ = importlib .metadata .version ("palantir" )
77except 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"
You can’t perform that action at this time.
0 commit comments