Skip to content

Commit f842388

Browse files
Merge pull request #1418 from CamDavidsonPilon/v0.27.1
v0.27.1
2 parents c0d80e0 + 66a5bf3 commit f842388

21 files changed

+583
-381
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Contributor Code of Conduct
22

3+
**If you support or allow fascism, racism, or misogyny: don’t use this code, don’t open issues, don’t ask for help.**
4+
35
As contributors and maintainers of this project, and in the interest of
46
fostering an open and welcoming community, we pledge to respect all people who
57
contribute through reporting issues, posting feature requests, updating

.github/workflows/ci.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on: [pull_request, push, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: true
10+
matrix:
11+
os: ["ubuntu-latest"]
12+
python-version: ["3.9", "3.10"]
13+
14+
steps:
15+
- name: Checkout source
16+
uses: actions/checkout@v2
17+
18+
- name: Setup python
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
23+
- name: Install
24+
run: |
25+
pip install -e .
26+
pip install -r reqs/dev-requirements.txt
27+
28+
- name: Run tests
29+
run: pytest lifelines/tests/ -vv

CHANGELOG.md

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

3+
#### 0.27.1 - 2022-03-15
4+
5+
##### New features
6+
- all `fit_` methods now accept a `fit_options` dict that allows one to pass kwargs to the underlying fitting algorithm.
7+
8+
9+
##### API Changes
10+
- `step_size` is removed from Cox models `fit`. See `fit_options` above.
11+
12+
##### Bug fixes
13+
- fixed Cox models when "trival" matrix was passed in (one with no covariates)
14+
315
#### 0.27.0 - 2022-03-15
416

517
Dropping Python3.6 support.

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[![PyPI version](https://badge.fury.io/py/lifelines.svg)](https://badge.fury.io/py/lifelines)
44
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/lifelines/badges/installer/conda.svg)](https://conda.anaconda.org/conda-forge)
5-
[![Build Status](https://travis-ci.org/CamDavidsonPilon/lifelines.svg?branch=master)](https://travis-ci.org/CamDavidsonPilon/lifelines)
6-
[![Coverage Status](https://coveralls.io/repos/github/CamDavidsonPilon/lifelines/badge.svg?branch=master)](https://coveralls.io/github/CamDavidsonPilon/lifelines?branch=master)
75
[![DOI](https://zenodo.org/badge/12420595.svg)](https://zenodo.org/badge/latestdoi/12420595)
86

97

@@ -28,9 +26,6 @@ If you are new to survival analysis, wondering why it is useful, or are interest
2826
- Some users have posted common questions at [stats.stackexchange.com](https://stats.stackexchange.com/search?tab=votes&q=%22lifelines%22%20is%3aquestion)
2927
- creating an issue in the [Github repository](https://github.com/camdavidsonpilon/lifelines).
3028

31-
## Roadmap
32-
You can find the roadmap for lifelines [here](https://www.notion.so/camdp/6e2965207f564eb2a3e48b5937873c14?v=47edda47ab774ca2ac7532bb0c750559).
33-
3429
## Development
3530

3631
See our [Contributing](https://github.com/CamDavidsonPilon/lifelines/blob/master/.github/CONTRIBUTING.md) guidelines.

0 commit comments

Comments
 (0)