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.
- mpl_richtext-0.1.1/.github/workflows/publish.yml +38 -0
- {mpl_richtext-0.1.0/mpl_richtext.egg-info → mpl_richtext-0.1.1}/PKG-INFO +1 -1
- mpl_richtext-0.1.1/mpl_richtext/version.py +1 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1/mpl_richtext.egg-info}/PKG-INFO +1 -1
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/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.1}/.gitignore +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/LICENSE +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/MANIFEST.in +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/README.md +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/examples/basic_usage.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/examples/mpl_richtext_examples.png +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext/__init__.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext/core.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/dependency_links.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/requires.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/mpl_richtext.egg-info/top_level.txt +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/pyproject.toml +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/setup.cfg +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/setup.py +0 -0
- {mpl_richtext-0.1.0 → mpl_richtext-0.1.1}/tests/__init__.py +0 -0
- {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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.1.1'
|
|
@@ -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
|
|
File without changes
|