Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pip-delete-this-directory.txt
htmlcov/
.tox/
.nox/
.andebox-tox-test.ini
.coverage
.coverage.*
.cache
Expand Down Expand Up @@ -117,6 +118,9 @@ ENV/
env.bak/
venv.bak/

# Ide
.vscode/

# Spyder project settings
.spyderproject
.spyproject
Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/0.2.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
release_summary: |
New release of the ``ans2dev.general`` collection.
The changelog describes all changes made to the modules and plugins included in this collection.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- charts - apply new ``plotly`` and ``kaleido`` version restriction. Fix ``plotly_get_chrome`` (https://github.com/3A2DEV/ans2dev.general/pull/193).
4 changes: 2 additions & 2 deletions plugins/modules/charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
version_added: "0.1.0"
requirements:
- requests
- plotly < 6.1.0 >= 6.1.1
- kaleido
- plotly < 6.2.0
- kaleido < 1.0.0
options:
titlechart:
description:
Expand Down
4 changes: 2 additions & 2 deletions roles/install_dep/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests
kaleido
plotly
kaleido < 1.0.0
plotly < 6.2.0
openpyxl
4 changes: 2 additions & 2 deletions tests/integration/targets/charts/tasks/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
ansible.builtin.pip:
name:
- requests
- kaleido
- plotly
- plotly<6.2.0
- kaleido<1.0.0

- name: Generate a line chart
ans2dev.general.charts:
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ openpyxl

# requirement for the charts module
requests
kaleido
plotly
kaleido < 1.0.0
plotly < 6.2.0