mpl-richtext 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mpl_richtext-0.1.2/.github/workflows/publish.yml +38 -0
- {mpl_richtext-0.1.0/mpl_richtext.egg-info → mpl_richtext-0.1.2}/PKG-INFO +2 -2
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/README.md +1 -1
- mpl_richtext-0.1.2/mpl_richtext/version.py +1 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2/mpl_richtext.egg-info}/PKG-INFO +2 -2
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext.egg-info/SOURCES.txt +1 -0
- mpl_richtext-0.1.0/mpl_richtext/version.py +0 -1
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/.gitignore +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/LICENSE +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/MANIFEST.in +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/examples/basic_usage.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/examples/mpl_richtext_examples.png +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext/__init__.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext/core.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext.egg-info/dependency_links.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext.egg-info/requires.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/mpl_richtext.egg-info/top_level.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/pyproject.toml +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/setup.cfg +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/setup.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/tests/__init__.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.2}/tests/test_basic.py +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
publish:
|
|
12
|
+
name: Publish to PyPI
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
environment:
|
|
15
|
+
name: release
|
|
16
|
+
url: https://pypi.org/project/mpl-richtext/
|
|
17
|
+
permissions:
|
|
18
|
+
id-token: write
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout code
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Set up Python
|
|
25
|
+
uses: actions/setup-python@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: '3.x'
|
|
28
|
+
|
|
29
|
+
- name: Install build tools
|
|
30
|
+
run: |
|
|
31
|
+
python -m pip install --upgrade pip
|
|
32
|
+
pip install build
|
|
33
|
+
|
|
34
|
+
- name: Build package
|
|
35
|
+
run: python -m build
|
|
36
|
+
|
|
37
|
+
- name: Publish to PyPI
|
|
38
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpl-richtext
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Rich text rendering for Matplotlib with multi-color and multi-style support
|
|
5
5
|
Home-page: https://github.com/ra8in/mpl-richtext
|
|
6
6
|
Author: Rabin Katel
|
|
@@ -52,7 +52,7 @@ Standard Matplotlib only supports single-color text. To create multi-colored tex
|
|
|
52
52
|
|
|
53
53
|
**mpl-richtext** solves this by letting you specify colors and styles for each text segment in one simple function call.
|
|
54
54
|
|
|
55
|
-

|
|
55
|
+

|
|
56
56
|
|
|
57
57
|
## Installation
|
|
58
58
|
|
|
@@ -12,7 +12,7 @@ Standard Matplotlib only supports single-color text. To create multi-colored tex
|
|
|
12
12
|
|
|
13
13
|
**mpl-richtext** solves this by letting you specify colors and styles for each text segment in one simple function call.
|
|
14
14
|
|
|
15
|
-

|
|
15
|
+

|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.1.2'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpl-richtext
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Rich text rendering for Matplotlib with multi-color and multi-style support
|
|
5
5
|
Home-page: https://github.com/ra8in/mpl-richtext
|
|
6
6
|
Author: Rabin Katel
|
|
@@ -52,7 +52,7 @@ Standard Matplotlib only supports single-color text. To create multi-colored tex
|
|
|
52
52
|
|
|
53
53
|
**mpl-richtext** solves this by letting you specify colors and styles for each text segment in one simple function call.
|
|
54
54
|
|
|
55
|
-

|
|
55
|
+

|
|
56
56
|
|
|
57
57
|
## Installation
|
|
58
58
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.1.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|