Skip to content

Commit 84a2587

Browse files
authored
update to 3.14 (#405)
* update to Python 3.14
1 parent 5ad54d3 commit 84a2587

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1515

1616
steps:
1717
- uses: actions/checkout@v4

RELEASE_NOTES.md

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

3+
## Version 0.5.9
4+
5+
* Add SymPy-powered distribution factory support for defining LogScore and NGBoost distributions from symbolic expressions or `sympy.stats` distributions
6+
* Add new built-in distributions via the factory, including Beta, Beta-Bernoulli, Beta-Binomial, and Logit-Normal
7+
* Add support for Python 3.14 and update CI matrix to test Python 3.14
8+
* Bump development version to `0.5.9dev`
9+
310
## Version 0.5.8
411

512
* Fix numpy2 natural gradient compatibility

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ngboost"
3-
version = "0.5.8dev"
3+
version = "0.5.9dev"
44
description = "Library for probabilistic predictions via gradient boosting."
55
authors = ["Stanford ML Group <avati@cs.stanford.edu>"]
66
readme = "README.md"
@@ -13,7 +13,7 @@ classifiers = [
1313
license = "Apache License 2.0"
1414

1515
[tool.poetry.dependencies]
16-
python = ">=3.9, <3.14"
16+
python = ">=3.9, <3.15"
1717
scikit-learn = "^1.6"
1818
numpy = [
1919
{version = ">=1.21.2", markers = "python_version < '3.13'"},
@@ -26,6 +26,10 @@ scipy = [
2626
tqdm = ">=4.3"
2727
lifelines = ">=0.25"
2828
sympy = ">=1.12"
29+
matplotlib = [
30+
{version = ">=3.0,<3.10", markers = "python_version < '3.10'"},
31+
{version = ">=3.10.0", markers = "python_version >= '3.10'"}
32+
]
2933

3034
[tool.poetry.group.dev.dependencies]
3135
pytest = "^8.0.0"
@@ -42,7 +46,7 @@ build-backend = "poetry.core.masonry.api"
4246

4347
[tool.black]
4448
line-length = 88
45-
target-version = ['py39', 'py310', 'py311']
49+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
4650
include = '\.pyi?$'
4751
extend-exclude = '''
4852
/(

0 commit comments

Comments
 (0)