Skip to content

Commit 7012df9

Browse files
authored
Merge branch 'ydataai:develop' into develop
2 parents 1cdb1c6 + 05aaf87 commit 7012df9

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

.github/workflows/release-deprecated.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
name: built-artifacts
6666
path: dist/
6767

68-
- uses: pypa/gh-action-pypi-publish@v1.6.4
68+
- uses: pypa/gh-action-pypi-publish@v1.8.1
6969
with:
7070
user: __token__
7171
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
name: built-artifacts
8585
path: dist/
8686

87-
- uses: pypa/gh-action-pypi-publish@v1.6.4
87+
- uses: pypa/gh-action-pypi-publish@v1.8.1
8888
with:
8989
user: __token__
9090
password: ${{ secrets.PYPI_API_TOKEN }}

docsrc/source/pages/reference/changelog.rst

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Changelog
33
=========
44

5+
.. include:: changelog/v4_1_0.md
6+
:parser: myst_parser.sphinx_
7+
58
.. include:: changelog/v4_0_0.md
69
:parser: myst_parser.sphinx_
710

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# [4.1.0](https://github.com/ydataai/ydata-profiling/compare/v4.0.0...v4.1.0) (2023-03-08)
2+
3+
4+
#### 🐛 Bug fixes
5+
6+
* add imagehash requirements ([0a8c5de](https://github.com/ydataai/ydata-profiling/commit/0a8c5deb1c5b2e414ba657b7513cc9559828a536))
7+
* correlation between columns w/o nonnull row ([cfda278](https://github.com/ydataai/ydata-profiling/commit/cfda2786d81825269a72dc87829f68b1097c48f4))
8+
* removed irregular spacing ([#1252](https://github.com/ydataai/ydata-profiling/issues/1252)) ([8aff455](https://github.com/ydataai/ydata-profiling/commit/8aff4556dcafc8ae6b7589caddd2aa03e9b81a4a))
9+
* update links and alignment in README ([efd633a](https://github.com/ydataai/ydata-profiling/commit/efd633a86d4a7f811725ae6dcdbb41c09654789e))
10+
* update pypi links ([1c84e89](https://github.com/ydataai/ydata-profiling/commit/1c84e89183a0beffab19c16ce1d659e8c4f65d6e))
11+
* update Stack Overlow to link to use both tags ([79202f7](https://github.com/ydataai/ydata-profiling/commit/79202f78f09f0b68ba183883ffdb1336ac93bcde))
12+
13+
14+
#### 🎉 Features
15+
16+
* add type schema ([#1274](https://github.com/ydataai/ydata-profiling/issues/1274)) ([b722b70](https://github.com/ydataai/ydata-profiling/commit/b722b7070bf1519132112eb277b40b0b0965478e))
17+
* support for Python 3.11 ([#1273](https://github.com/ydataai/ydata-profiling/issues/1273)) ([cf9dac7](https://github.com/ydataai/ydata-profiling/commit/cf9dac7b2932d7723442b741d409e3bf40b2ab21))

src/ydata_profiling/report/structure/report.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def get_report_structure(config: Settings, summary: dict) -> Root:
377377
anchor_id="variables-dropdown",
378378
id="variables-dropdown",
379379
is_row=True,
380-
classes=["btn", "btn-secondary", "dropdown-toggle"],
380+
classes=["dropdown-toggle"],
381381
items=list(summary["variables"]),
382382
item=Container(
383383
render_variables_section(config, summary),

0 commit comments

Comments
 (0)