Skip to content

Commit 83b194b

Browse files
author
sborms
committed
fix failing tests
1 parent 382110a commit 83b194b

6 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/development_CI.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Runs CI when pushing to develop branch
2-
# runs pylint and pytest
1+
## Runs CI when pushing to develop branch
32

43
name: CI_develop_action
54

.github/workflows/master_CI.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Runs CI when pushing to master branch
2-
# runs pylint and pytest
1+
## Runs CI when pushing to master branch
32

43
name: CI_master_action
54

.github/workflows/master_publish_pypi.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Publishes code to pip when we publish a new release
2-
# runs pylint and pytest
1+
## Publishes code to pip when we publish a new release
32

43
name: publish_to_pip
54

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This package requires only the usual Python libraries for data science, being nu
4242
pip install -r requirements.txt
4343

4444

45-
**Note**: if you want to install Cobra with e.g. pip, you don't have to install all of these requirements as these are automatically installed with Cobra itself.
45+
**Note**: if you want to install Cobra with e.g. pip, you don't have to install all these requirements as these are automatically installed with Cobra itself.
4646

4747
Installation
4848
------------

cobra/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0"
1+
__version__ = "1.1.1"

tests/model_building/test_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def test_serialize(self):
225225
"copy_X": True,
226226
"fit_intercept": True,
227227
"n_jobs": None,
228-
"normalize": False,
228+
"normalize": "deprecated",
229229
"positive": False
230230
}
231231
}
@@ -244,7 +244,7 @@ def test_deserialize(self):
244244
"copy_X": True,
245245
"fit_intercept": True,
246246
"n_jobs": None,
247-
"normalize": False,
247+
"normalize": "deprecated",
248248
"positive": False
249249
},
250250
"coef_": [[0.5, 0.75]],

0 commit comments

Comments
 (0)