Skip to content

Commit

Permalink
bump version;
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed May 1, 2023
1 parent 8c56133 commit 4a6b747
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## Changelog

#### 0.27.7 - 2023-05-01
- `check_assumptions(show_plots=True)` will always show plots, regardless of test outcome. Thanks @nomennominatur!
- `lifelines.datasets` is now importable.

#### 0.27.6 - 2023-04-27
- Fix for py3.7


#### 0.27.5 - 2023-04-27
- Support pandas 2.0+

Expand Down
3 changes: 1 addition & 2 deletions lifelines/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
# pylint: skip-file

from typing import List
from lifelines.fitters.weibull_fitter import WeibullFitter
from lifelines.fitters.exponential_fitter import ExponentialFitter
from lifelines.fitters.nelson_aalen_fitter import NelsonAalenFitter
Expand All @@ -23,7 +22,7 @@
from lifelines.fitters.spline_fitter import SplineFitter
from lifelines.fitters.mixture_cure_fitter import MixtureCureFitter
from lifelines.fitters.crc_spline_fitter import CRCSplineFitter

from lifelines import datasets

from lifelines.version import __version__

Expand Down
2 changes: 1 addition & 1 deletion lifelines/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

__version__ = "0.27.6"
__version__ = "0.27.7"

0 comments on commit 4a6b747

Please sign in to comment.