Skip to content

Commit

Permalink
Merge pull request #280 from BCG-Gamma/dev/1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
j-ittner authored May 14, 2021
2 parents 9ff51fb + 7e50584 commit 16b8aa2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Release Notes
FACET 1.0
---------

1.0.3
~~~~~

- FIX: restrict package requirements to *gamma-pytools* 1.0.* and *sklearndf* 1.0.x, since FACET 1.0 is not compatible with *gamma-pytools* 1.1.*

1.0.2
~~~~~

Expand Down
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,8 @@ stages:
cp -r $(Build.ArtifactStagingDirectory)/old_docs/docs .
echo "Current docs contents:"
tree docs
mkdir -p $(System.DefaultWorkingDirectory)/facet/sphinx/build/
cp -R docs/docs-version $(System.DefaultWorkingDirectory)/facet/sphinx/build/
echo "Building sphinx docs"
conda activate facet-develop
cd $(System.DefaultWorkingDirectory)/facet
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ license = "Apache Software License v2.0"

requires = [
# direct requirements of gamma-facet
"gamma-pytools >=1.0.2,<2",
"gamma-pytools ~=1.0.2",
"matplotlib >=3.0,<3.4",
"numpy >=1.16,<1.21",
"packaging >=20",
"pandas >=0.24,<1.3",
"scipy >=1.2,<1.6",
"shap >=0.34,<0.39",
"sklearndf >=1.0.2,<2",
"sklearndf ~=1.0.2",
# additional requirements of sklearndf
"boruta >=0.3",
"lightgbm >=3.0",
Expand Down Expand Up @@ -96,15 +96,15 @@ joblib = "=0.13.*"
typing_inspect = "=0.4"

[build.matrix.max]
gamma-pytools = "<2"
gamma-pytools = "~=1.0.2"
matplotlib = "=3.3.*"
numpy = "<1.21"
packaging = ">=20"
pandas = "<1.3"
python = "=3.8.*"
scipy = "<1.6"
shap = ">=0.37,<0.39"
sklearndf = ">=1.0.2,<2"
sklearndf = "~=1.0.2"
# additional requirements of sklearndf
boruta = ">=0.3"
lightgbm = ">=3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/facet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


__version__ = "1.0.2"
__version__ = "1.0.3"

__logo__ = (
r"""
Expand Down

0 comments on commit 16b8aa2

Please sign in to comment.