mpl-richtext 0.1.0__tar.gz → 0.1.1__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.
Files changed (22) hide show
  1. mpl_richtext-0.1.1/.github/workflows/publish.yml +38 -0
  2. {mpl_richtext-0.1.0/mpl_richtext.egg-info → mpl_richtext-0.1.1}/PKG-INFO +1 -1
  3. mpl_richtext-0.1.1/mpl_richtext/version.py +1 -0
  4. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1/mpl_richtext.egg-info}/PKG-INFO +1 -1
  5. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/SOURCES.txt +1 -0
  6. mpl_richtext-0.1.0/mpl_richtext/version.py +0 -1
  7. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/.gitignore +0 -0
  8. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/LICENSE +0 -0
  9. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/MANIFEST.in +0 -0
  10. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/README.md +0 -0
  11. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/examples/basic_usage.py +0 -0
  12. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/examples/mpl_richtext_examples.png +0 -0
  13. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext/__init__.py +0 -0
  14. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext/core.py +0 -0
  15. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/dependency_links.txt +0 -0
  16. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/requires.txt +0 -0
  17. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/top_level.txt +0 -0
  18. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/pyproject.toml +0 -0
  19. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/setup.cfg +0 -0
  20. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/setup.py +0 -0
  21. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/tests/__init__.py +0 -0
  22. {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/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.0
3
+ Version: 0.1.1
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
@@ -0,0 +1 @@
1
+ __version__ = '0.1.1'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mpl-richtext
3
- Version: 0.1.0
3
+ Version: 0.1.1
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
@@ -4,6 +4,7 @@ MANIFEST.in
4
4
  README.md
5
5
  pyproject.toml
6
6
  setup.py
7
+ .github/workflows/publish.yml
7
8
  examples/basic_usage.py
8
9
  examples/mpl_richtext_examples.png
9
10
  mpl_richtext/__init__.py
@@ -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