openbb-devtools 1.6.2__tar.gz → 1.6.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openbb-devtools
3
- Version: 1.6.2
3
+ Version: 1.6.4
4
4
  Summary: Tools for OpenBB Platform Developers
5
5
  License: AGPL-3.0-only
6
6
  Author: OpenBB Team
@@ -13,11 +13,11 @@ Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.14
16
- Requires-Dist: black (>=26.3.1,<27.0.0)
16
+ Requires-Dist: black (>=26.3.1)
17
17
  Requires-Dist: codespell (>=2.2.5,<3.0.0)
18
- Requires-Dist: ipykernel (>=6.30.1,<7.0.0)
18
+ Requires-Dist: ipykernel (>=6.30.1)
19
19
  Requires-Dist: mypy (>=1.12.1,<2.0.0)
20
- Requires-Dist: openbb-core (>=1.6.3,<2.0.0)
20
+ Requires-Dist: openbb-core (>=1.6.7,<2.0.0)
21
21
  Requires-Dist: poetry (>=2.1.3)
22
22
  Requires-Dist: pre-commit (>=3.5.0,<4.0.0)
23
23
  Requires-Dist: pydocstyle (>=6.3.0,<7.0.0)
@@ -28,7 +28,7 @@ Requires-Dist: pytest-cov (>=4.1.0,<5.0.0)
28
28
  Requires-Dist: pytest-order (>=1.3.0,<2.0.0)
29
29
  Requires-Dist: pytest-recorder (>=0.6.4)
30
30
  Requires-Dist: pytest-subtests (>=0.11.0,<0.12.0)
31
- Requires-Dist: ruff (>=0.13,<0.14)
31
+ Requires-Dist: ruff (>=0.15,<0.16)
32
32
  Requires-Dist: tox (>=4.11.3,<5.0.0)
33
33
  Requires-Dist: types-python-dateutil (>=2.8.19.14,<3.0.0.0)
34
34
  Requires-Dist: types-toml (>=0.10.8.7,<0.11.0.0)
@@ -1,22 +1,22 @@
1
- # The OpenBB DevTools Extension
2
-
3
- This extension aggregates the dependencies that facilitate a nice development experience
4
- for OpenBB. It does not contain any code itself, but rather pulls in the following dependencies:
5
-
6
- - Linters (ruff, pylint, mypy)
7
- - Code formatters (black)
8
- - Code quality tools (bandit)
9
- - Pre-commit hooks (pre-commit)
10
- - CI/CD configuration (tox, pytest, pytest-cov)
11
- - Jupyter kernel (ipykernel)
12
- - ... add your productivity booster here ...
13
-
14
- ## Installation
15
-
16
- The extension is included into the dev_install.py script.
17
-
18
- Standalone installation:
19
-
20
- ```bash
21
- pip install openbb-devtools
22
- ```
1
+ # The OpenBB DevTools Extension
2
+
3
+ This extension aggregates the dependencies that facilitate a nice development experience
4
+ for OpenBB. It does not contain any code itself, but rather pulls in the following dependencies:
5
+
6
+ - Linters (ruff, pylint, mypy)
7
+ - Code formatters (black)
8
+ - Code quality tools (bandit)
9
+ - Pre-commit hooks (pre-commit)
10
+ - CI/CD configuration (tox, pytest, pytest-cov)
11
+ - Jupyter kernel (ipykernel)
12
+ - ... add your productivity booster here ...
13
+
14
+ ## Installation
15
+
16
+ The extension is included into the dev_install.py script.
17
+
18
+ Standalone installation:
19
+
20
+ ```bash
21
+ pip install openbb-devtools
22
+ ```
@@ -1 +1 @@
1
- """Placeholder for openbb_devtools."""
1
+ """Placeholder for openbb_devtools."""
@@ -1,35 +1,35 @@
1
- [tool.poetry]
2
- name = "openbb-devtools"
3
- version = "1.6.2"
4
- description = "Tools for OpenBB Platform Developers"
5
- authors = ["OpenBB Team <hello@openbb.co>"]
6
- license = "AGPL-3.0-only"
7
- readme = "README.md"
8
- packages = [{ include = "openbb_devtools" }]
9
-
10
- [tool.poetry.dependencies]
11
- python = ">=3.10,<4" # scipy forces <4.0 explicitly
12
- ruff = "^0.13"
13
- pylint = "^3.3"
14
- mypy = "^1.12.1"
15
- pydocstyle = "^6.3.0"
16
- black = "^26.3.1"
17
- codespell = "^2.2.5"
18
- pre-commit = "^3.5.0"
19
- tox = "^4.11.3"
20
- pytest = ">=8.4.1"
21
- pytest-subtests = "^0.11.0"
22
- pytest-recorder = ">=0.6.4"
23
- pytest-asyncio = "^0.23.2"
24
- pytest-order = "^1.3.0"
25
- pytest-cov = "^4.1.0"
26
- ipykernel = "^6.30.1"
27
- types-python-dateutil = "^2.8.19.14"
28
- types-toml = "^0.10.8.7"
29
- poetry = ">=2.1.3"
30
- openbb-core = "^1.6.3"
31
-
32
-
33
- [build-system]
34
- requires = ["poetry-core"]
35
- build-backend = "poetry.core.masonry.api"
1
+ [tool.poetry]
2
+ name = "openbb-devtools"
3
+ version = "1.6.4"
4
+ description = "Tools for OpenBB Platform Developers"
5
+ authors = ["OpenBB Team <hello@openbb.co>"]
6
+ license = "AGPL-3.0-only"
7
+ readme = "README.md"
8
+ packages = [{ include = "openbb_devtools" }]
9
+
10
+ [tool.poetry.dependencies]
11
+ python = ">=3.10,<4" # scipy forces <4.0 explicitly
12
+ ruff = "^0.15"
13
+ pylint = "^3.3"
14
+ mypy = "^1.12.1"
15
+ pydocstyle = "^6.3.0"
16
+ black = ">=26.3.1"
17
+ codespell = "^2.2.5"
18
+ pre-commit = "^3.5.0"
19
+ tox = "^4.11.3"
20
+ pytest = ">=8.4.1"
21
+ pytest-subtests = "^0.11.0"
22
+ pytest-recorder = ">=0.6.4"
23
+ pytest-asyncio = "^0.23.2"
24
+ pytest-order = "^1.3.0"
25
+ pytest-cov = "^4.1.0"
26
+ ipykernel = ">=6.30.1"
27
+ types-python-dateutil = "^2.8.19.14"
28
+ types-toml = "^0.10.8.7"
29
+ poetry = ">=2.1.3"
30
+ openbb-core = "^1.6.7"
31
+
32
+
33
+ [build-system]
34
+ requires = ["poetry-core"]
35
+ build-backend = "poetry.core.masonry.api"