Skip to content

Commit

Permalink
Merge pull request #353 from BCG-Gamma/dev/1.2.3
Browse files Browse the repository at this point in the history
BUILD: release FACET 1.2.3
  • Loading branch information
j-ittner authored Sep 29, 2022
2 parents ef2c918 + 2bf1e72 commit efac218
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ fit the underlying crossfit.
One example where this can be useful is to use only a recent period of a time series as
the baseline of a simulation.

1.2.3
~~~~~

- BUILD: pin down *matplotlib* version to < 3.6 and *scipy* version to < 1.9 to ensure
compatibility with *pytools* 1.2 and *sklearndf* 1.2


1.2.2
~~~~~
Expand Down
8 changes: 7 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ schedules:
displayName: Nightly full build
branches:
include:
- 1.2.x
- 2.0.x

resources:
repositories:
Expand Down Expand Up @@ -565,14 +565,20 @@ stages:
variables:
- group: github_ssh

# Doc build has been disabled since the documentation format has changed from
# version 2.0.0 onwards.
# The new documentation format is not compatible with the old doc build process.
jobs:
- job:
displayName: 'Build and publish docs'
condition: >
and(
false,
or(
eq(variables.source_is_release_branch, 'True'),
eq(variables.source_is_develop_branch, 'True')
)
)
pool:
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ dependencies:
- gamma-pytools ~= 1.2, >= 1.2.1
- joblib ~= 1.1
- lightgbm ~= 3.2
- matplotlib ~= 3.3
- matplotlib ~= 3.5.2
- numpy ~= 1.22
- pandas ~= 1.4
- python ~= 3.8
- scikit-learn ~= 0.24.2
- scipy ~= 1.6
- scipy ~= 1.8.1
- shap ~= 0.39.0
- sklearndf ~= 1.2
# build/test
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ license = "Apache Software License v2.0"
requires = [
# direct requirements of gamma-facet
"gamma-pytools ~=1.2,>=1.2.1",
"matplotlib ~=3.0",
"matplotlib ~=3.0,<3.6a",
"numpy >=1.17,<2a",
"packaging >=20",
"pandas >=0.24,<2a",
"scipy ~=1.2",
"scipy ~=1.2,<1.9a",
"shap >=0.34,<0.40a",
"sklearndf ~=1.2",
]
Expand Down Expand Up @@ -93,12 +93,12 @@ typing-extensions = "<4.2"
[build.matrix.max]
# direct requirements of gamma-facet
gamma-pytools = "~=1.2,>=1.2.1"
matplotlib = "~=3.4"
matplotlib = "~=3.5.2"
numpy = ">=1.22,<2a"
packaging = ">=20.9"
pandas = "~=1.4"
python = "~=3.8"
scipy = "~=1.5"
scipy = "~=1.8.1"
shap = "~=0.39.0"
sklearndf = "~=1.2"
# additional maximum requirements of sklearndf
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.2.2"
__version__ = "1.2.3"

__logo__ = (
r"""
Expand Down

0 comments on commit efac218

Please sign in to comment.