Skip to content

Commit

Permalink
Bump supported python version in toml files (#6556)
Browse files Browse the repository at this point in the history
* Unpin <3.12 in lost tomls

* Bump linearmodels to latest v4 minor
  • Loading branch information
piiq authored Jul 2, 2024
1 parent a064524 commit 4c7f1f6
Show file tree
Hide file tree
Showing 9 changed files with 89 additions and 39 deletions.
2 changes: 1 addition & 1 deletion cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ documentation = "https://docs.openbb.co/terminal"
openbb = 'openbb_cli.cli:main'

[tool.poetry.dependencies]
python = "^3.9,<3.12"
python = "^3.9,<3.13"

# OpenBB dependencies
openbb = { version = "^4.2.3", extras = ["all"] }
Expand Down
2 changes: 1 addition & 1 deletion openbb_platform/dev_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

LOCAL_DEPS = """
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.9,<3.13"
openbb-devtools = { path = "./extensions/devtools", develop = true, markers = "python_version >= '3.10'" }
openbb-core = { path = "./core", develop = true }
Expand Down
7 changes: 4 additions & 3 deletions openbb_platform/extensions/devtools/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openbb_platform/extensions/devtools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
packages = [{ include = "openbb_devtools" }]

[tool.poetry.dependencies]
python = ">=3.10,<3.12" # scipy forces <4.0 explicitly
python = ">=3.10,<3.13" # scipy forces <4.0 explicitly
ruff = "^0.4.4"
pylint = "^3.0.2"
mypy = "^1.6.1"
Expand Down
104 changes: 76 additions & 28 deletions openbb_platform/extensions/econometrics/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openbb_platform/extensions/econometrics/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python = ">=3.9,<3.13" # scipy forces python <4.0 explicitly
scipy = "^1.10.1"
statsmodels = "^0.14.0"
arch = "^5.5.0"
linearmodels = "<=4.25" # ^4.26 has setuptools-scm in setup_requires
linearmodels = "^4.30" # pin v4 until someone tests later versions
openbb-core = "^1.2.5"

[build-system]
Expand Down
5 changes: 3 additions & 2 deletions openbb_platform/extensions/technical/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openbb_platform/extensions/technical/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
packages = [{ include = "openbb_technical" }]

[tool.poetry.dependencies]
python = ">=3.9,<3.12" # scipy forces python <4.0 explicitly
python = ">=3.9,<3.13" # scipy forces python <4.0 explicitly
openbb-core = "^1.2.5"
scipy = "^1.10.1"
statsmodels = "^0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion openbb_platform/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
packages = [{ include = "openbb" }]

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.9,<3.13"
openbb-core = "^1.2.5"

openbb-benzinga = "^1.2.3"
Expand Down

0 comments on commit 4c7f1f6

Please sign in to comment.