Skip to content

Commit

Permalink
chore(release): v1.22.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.22.0](v1.21.0...v1.22.0) (2025-01-06)

### Features

* support python 3.13 ([#306](#306)) ([5dad5e3](5dad5e3))
  • Loading branch information
forest-bot committed Jan 6, 2025
1 parent 5dad5e3 commit 402f795
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.22.0](https://github.com/ForestAdmin/agent-python/compare/v1.21.0...v1.22.0) (2025-01-06)


### Features

* support python 3.13 ([#306](https://github.com/ForestAdmin/agent-python/issues/306)) ([5dad5e3](https://github.com/ForestAdmin/agent-python/commit/5dad5e31b7bb85108bda23c8cc56c517ed21552c))

# [1.21.0](https://github.com/ForestAdmin/agent-python/compare/v1.20.1...v1.21.0) (2025-01-06)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-python",
"version": "1.21.0",
"version": "1.22.0",
"description": "The official Python liana for Forest.",
"repository": {
"type": "git",
Expand Down
7 changes: 4 additions & 3 deletions src/agent_toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "forestadmin-agent-toolkit"
description = "agent toolkit for forestadmin python agent"
version = "1.21.0"
version = "1.22.0"
authors = [ "Valentin Monté <[email protected]>", "Julien Barreau <[email protected]>",]
readme = "README.md"
repository = "https://github.com/ForestAdmin/agent-python"
Expand All @@ -23,18 +23,19 @@ pyjwt = "^2"
cachetools = "~=5.2"
marshmallow-jsonapi = ">=0.24.0, <1.0"
sseclient-py = "^1.5"
forestadmin-datasource-toolkit = "1.21.0"

forestadmin-datasource-toolkit = "1.22.0"
[[tool.poetry.dependencies.pandas]]
version = ">=1.4.0"
python = "<3.13.0"

[[tool.poetry.dependencies.pandas]]
version = ">=2.2.3"
python = ">=3.13.0"

[[tool.poetry.dependencies.numpy]]
version = ">=1.26.0,<2.0.0"
python = ">=3.12.0"

[[tool.poetry.dependencies.numpy]]
version = "<2.0.0"
python = "<3.12.0"
Expand Down
6 changes: 3 additions & 3 deletions src/datasource_django/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "forestadmin-datasource-django"
version = "1.21.0"
version = "1.22.0"
description = "django datasource for forestadmin python agent"
authors = [ "Julien Barreau <[email protected]>",]
readme = "README.md"
Expand All @@ -18,8 +18,8 @@ include = "forestadmin"
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
django = ">=3.2,<5.2"
forestadmin-datasource-toolkit = "1.21.0"
forestadmin-agent-toolkit = "1.21.0"
forestadmin-datasource-toolkit = "1.22.0"
forestadmin-agent-toolkit = "1.22.0"

[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "test_project_datasource.settings"
Expand Down
6 changes: 3 additions & 3 deletions src/datasource_sqlalchemy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "forestadmin-datasource-sqlalchemy"
version = "1.21.0"
version = "1.22.0"
description = "sqlalchemy datasource for forestadmin python agent"
authors = [ "Valentin Monté <[email protected]>", "Julien Barreau <[email protected]>",]
readme = "README.md"
Expand All @@ -18,8 +18,8 @@ include = "forestadmin"
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
sqlalchemy = ">=1.4.0"
forestadmin-datasource-toolkit = "1.21.0"
forestadmin-agent-toolkit = "1.21.0"
forestadmin-datasource-toolkit = "1.22.0"
forestadmin-agent-toolkit = "1.22.0"

[tool.poetry.dependencies."backports.zoneinfo"]
version = "~=0.2.1"
Expand Down
5 changes: 3 additions & 2 deletions src/datasource_toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "forestadmin-datasource-toolkit"
description = "datasource toolkit for forestadmin python agent"
version = "1.21.0"
version = "1.22.0"
authors = [ "Valentin Monté <[email protected]>", "Julien Barreau <[email protected]>",]
readme = "README.md"
repository = "https://github.com/ForestAdmin/agent-python"
Expand All @@ -18,17 +18,18 @@ include = "forestadmin"
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
filetype = "^1.0.0"

[[tool.poetry.dependencies.numpy]]
version = ">=1.26.0,<2.0.0"
python = ">=3.12.0"

[[tool.poetry.dependencies.numpy]]
version = "<2.0.0"
python = "<3.12.0"

[[tool.poetry.dependencies.pandas]]
version = ">=1.4.0"
python = "<3.13.0"

[[tool.poetry.dependencies.pandas]]
version = ">=2.2.3"
python = ">=3.13.0"
Expand Down
6 changes: 3 additions & 3 deletions src/django_agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "forestadmin-agent-django"
version = "1.21.0"
version = "1.22.0"
description = "django agent for forestadmin python agent"
authors = [ "Julien Barreau <[email protected]>",]
readme = "README.md"
Expand All @@ -18,8 +18,8 @@ include = "forestadmin"
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
django = ">=3.2,<5.2"
forestadmin-agent-toolkit = "1.21.0"
forestadmin-datasource-django = "1.21.0"
forestadmin-agent-toolkit = "1.22.0"
forestadmin-datasource-django = "1.22.0"
django-cors-headers = ">=3.8"

[tool.pytest.ini_options]
Expand Down
6 changes: 3 additions & 3 deletions src/flask_agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "forestadmin-agent-flask"
description = "flask agent for forestadmin python agent"
version = "1.21.0"
version = "1.22.0"
authors = [ "Valentin Monté <[email protected]>", "Julien Barreau <[email protected]>",]
readme = "README.md"
repository = "https://github.com/ForestAdmin/agent-python"
Expand All @@ -17,8 +17,8 @@ include = "forestadmin"
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
forestadmin-agent-toolkit = "1.21.0"
forestadmin-datasource-toolkit = "1.21.0"
forestadmin-agent-toolkit = "1.22.0"
forestadmin-datasource-toolkit = "1.22.0"
flask-cors = ">=3.0.0"

[tool.poetry.dependencies.flask]
Expand Down

0 comments on commit 402f795

Please sign in to comment.