├── .github └── workflows │ ├── ci.yaml │ ├── create-snapshot.yaml │ ├── publish.yaml │ └── update-snapshot.yaml ├── .gitignore ├── .python-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.png ├── demo.py ├── docs └── release_procedure.md ├── pyproject.toml ├── src └── matplotlib_fontja │ ├── __init__.py │ ├── fonts │ ├── IPA_Font_License_Agreement_v1.0.txt │ ├── Readme_ipaexg00401.txt │ └── ipaexg.ttf │ └── matplotlib_fontja.py └── test ├── create_snapshot.py ├── pyproject.toml └── snapshot ├── py3.10_mpl3.10.png ├── py3.10_mpl3.3.png ├── py3.10_mpl3.4.png ├── py3.10_mpl3.5.png ├── py3.10_mpl3.6.png ├── py3.10_mpl3.7.png ├── py3.10_mpl3.8.png ├── py3.10_mpl3.9.png ├── py3.11_mpl3.10.png ├── py3.11_mpl3.3.png ├── py3.11_mpl3.4.png ├── py3.11_mpl3.5.png ├── py3.11_mpl3.6.png ├── py3.11_mpl3.7.png ├── py3.11_mpl3.8.png ├── py3.11_mpl3.9.png ├── py3.12_mpl3.10.png ├── py3.12_mpl3.5.png ├── py3.12_mpl3.6.png ├── py3.12_mpl3.7.png ├── py3.12_mpl3.8.png ├── py3.12_mpl3.9.png ├── py3.13_mpl3.10.png ├── py3.13_mpl3.5.png ├── py3.13_mpl3.6.png ├── py3.13_mpl3.7.png ├── py3.13_mpl3.8.png ├── py3.13_mpl3.9.png ├── py3.14_mpl3.10.png ├── py3.14_mpl3.5.png ├── py3.8_mpl3.3.png ├── py3.8_mpl3.4.png ├── py3.8_mpl3.5.png ├── py3.8_mpl3.6.png ├── py3.8_mpl3.7.png ├── py3.9_mpl3.3.png ├── py3.9_mpl3.4.png ├── py3.9_mpl3.5.png ├── py3.9_mpl3.6.png ├── py3.9_mpl3.7.png ├── py3.9_mpl3.8.png └── py3.9_mpl3.9.png /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/create-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/.github/workflows/create-snapshot.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/update-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/.github/workflows/update-snapshot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/demo.png -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/demo.py -------------------------------------------------------------------------------- /docs/release_procedure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/docs/release_procedure.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/matplotlib_fontja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/src/matplotlib_fontja/__init__.py -------------------------------------------------------------------------------- /src/matplotlib_fontja/fonts/IPA_Font_License_Agreement_v1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/src/matplotlib_fontja/fonts/IPA_Font_License_Agreement_v1.0.txt -------------------------------------------------------------------------------- /src/matplotlib_fontja/fonts/Readme_ipaexg00401.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/src/matplotlib_fontja/fonts/Readme_ipaexg00401.txt -------------------------------------------------------------------------------- /src/matplotlib_fontja/fonts/ipaexg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/src/matplotlib_fontja/fonts/ipaexg.ttf -------------------------------------------------------------------------------- /src/matplotlib_fontja/matplotlib_fontja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/src/matplotlib_fontja/matplotlib_fontja.py -------------------------------------------------------------------------------- /test/create_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/create_snapshot.py -------------------------------------------------------------------------------- /test/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/pyproject.toml -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.10.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.3.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.4.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.8.png -------------------------------------------------------------------------------- /test/snapshot/py3.10_mpl3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.10_mpl3.9.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.10.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.3.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.4.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.8.png -------------------------------------------------------------------------------- /test/snapshot/py3.11_mpl3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.11_mpl3.9.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.10.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.8.png -------------------------------------------------------------------------------- /test/snapshot/py3.12_mpl3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.12_mpl3.9.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.10.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.8.png -------------------------------------------------------------------------------- /test/snapshot/py3.13_mpl3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.13_mpl3.9.png -------------------------------------------------------------------------------- /test/snapshot/py3.14_mpl3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.14_mpl3.10.png -------------------------------------------------------------------------------- /test/snapshot/py3.14_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.14_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.8_mpl3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.8_mpl3.3.png -------------------------------------------------------------------------------- /test/snapshot/py3.8_mpl3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.8_mpl3.4.png -------------------------------------------------------------------------------- /test/snapshot/py3.8_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.8_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.8_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.8_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.8_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.8_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.3.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.4.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.5.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.6.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.7.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.8.png -------------------------------------------------------------------------------- /test/snapshot/py3.9_mpl3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciffelia/matplotlib-fontja/HEAD/test/snapshot/py3.9_mpl3.9.png --------------------------------------------------------------------------------