Skip to content

Commit a6fd21d

Browse files
Merge pull request #1590 from CamDavidsonPilon/0.28.0
0.28.0
2 parents 6d3cedf + e9320f7 commit a6fd21d

17 files changed

+345
-580
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ dist
77

88
# IDE files
99
\.vscode/
10+
*.sublime-project
11+
*.sublime-workspace
1012

1113
# testing artifacts
1214
\.coverage
@@ -30,3 +32,7 @@ docs/_build/
3032

3133
# Pycharm
3234
\.idea/
35+
36+
# mypy and tests
37+
.mypy_cache/
38+
benchmarks/

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.9"
11+
python: "3.11"
1212
# You can also specify other tool versions:
1313
# nodejs: "20"
1414
# rust: "1.70"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## Changelog
22

3+
#### 0.28.0 - 2023-01-03
4+
- Fixes bins that are far into the future with using `survival_table_from_events`, see #1587
5+
- Removed `sklean_adaptor`. It was a terrible hack, and causing more confusion and support debt than I want. This cleans up our API and simplifies the library. ✨ There's no replacement, and I doubt I'll introduce one ✨
6+
- Fix pandas>=2.0 compatibility.
7+
- Fix overflow issue in NelsonAalenfitter, #1585
8+
- officially drop support for < py3.9
9+
- update some dependencies (pandas >= 1.2)
10+
311
#### 0.27.8 - 2023-09-13
412
- Estimators now have `.label` property
513
- Fixed some deprecation warnings

0 commit comments

Comments
 (0)