Bump matplotlib from 3.8.0 to 3.8.1 in /requirements (#1708)

* Bump matplotlib from 3.8.0 to 3.8.1 in /requirements

Bumps [matplotlib](https://github.com/matplotlib/matplotlib) from 3.8.0 to 3.8.1.
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](https://github.com/matplotlib/matplotlib/compare/v3.8.0...v3.8.1)

---
updated-dependencies:
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* plt.show now has type hints

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
dependabot[bot] 2023-11-01 23:00:12 +00:00 коммит произвёл Nils Lehmann
Родитель 01de750885
Коммит a84dce7abc
6 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -34,5 +34,5 @@ repos:
hooks:
- id: mypy
args: [--strict, --ignore-missing-imports, --show-error-codes]
additional_dependencies: [torch>=2, torchmetrics>=0.10, lightning>=2.0.9, pytest>=6.1.2, pyvista>=0.34.2, kornia>=0.6.5, numpy>=1.22]
additional_dependencies: [kornia>=0.6.5, lightning>=2.0.9, matplotlib>=3.8.1, numpy>=1.22, pytest>=6.1.2, pyvista>=0.34.2, torch>=2, torchmetrics>=0.10]
exclude: (build|data|dist|logo|logs|output)/

Просмотреть файл

@ -163,4 +163,4 @@ ax2.plot(0, 0, transform=ax2.transAxes, **kwargs)
plt.tight_layout()
plt.subplots_adjust(wspace=0.05)
plt.show() # type: ignore[no-untyped-call]
plt.show()

Просмотреть файл

@ -141,4 +141,4 @@ ax.tick_params(axis="both", which="both", top=False, right=False)
ax.spines[["top", "right"]].set_visible(False)
plt.tight_layout()
plt.show() # type: ignore[no-untyped-call]
plt.show()

Просмотреть файл

@ -74,4 +74,4 @@ ax.legend(fontsize="large")
plt.gca().spines.right.set_visible(False)
plt.gca().spines.top.set_visible(False)
plt.tight_layout()
plt.show() # type: ignore[no-untyped-call]
plt.show()

Просмотреть файл

@ -40,4 +40,4 @@ ax.legend(loc="center right", fontsize="large")
plt.gca().spines.right.set_visible(False)
plt.gca().spines.top.set_visible(False)
plt.tight_layout()
plt.show() # type: ignore[no-untyped-call]
plt.show()

Просмотреть файл

@ -53,4 +53,4 @@ ax.set_xticklabels(["16", "32", "64", "128", "256"])
ax.set_xlabel("batch size")
ax.set_ylabel("% sampling rate (patches/sec)")
ax.legend()
plt.show() # type: ignore[no-untyped-call]
plt.show()