Skip to content

Commit

Permalink
chore(deps): update pandas upper version (#1512)
Browse files Browse the repository at this point in the history
* chore(deps): update pandas upper version

* fix(linting): code formatting

---------

Co-authored-by: Azory YData Bot <[email protected]>
  • Loading branch information
aquemy and azory-ydata authored Dec 5, 2023
1 parent f978af0 commit 5bacd6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scipy>=1.4.1, <1.12
pandas>1.1, <2.1, !=1.4.0
pandas>1.1, <3, !=1.4.0
matplotlib>=3.2, <3.9
pydantic>=2
PyYAML>=5.0.0, <6.1
Expand Down
4 changes: 3 additions & 1 deletion src/ydata_profiling/visualisation/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,7 @@ def manage_matplotlib_context() -> Any:
finally:
deregister_matplotlib_converters() # revert to original unit registries
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=matplotlib.MatplotlibDeprecationWarning)
warnings.filterwarnings(
"ignore", category=matplotlib.MatplotlibDeprecationWarning
)
matplotlib.rcParams.update(originalRcParams) # revert to original rcParams

0 comments on commit 5bacd6b

Please sign in to comment.