File tree Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Expand file tree Collapse file tree 5 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 5
5
types : [created]
6
6
7
7
jobs :
8
- deploy :
8
+ pypi-publish :
9
+ name : upload release to PyPI
9
10
runs-on : ubuntu-latest
11
+ # Specifying a GitHub environment is optional, but strongly encouraged
12
+ environment : pypi
13
+ permissions :
14
+ # IMPORTANT: this permission is mandatory for trusted publishing
15
+ id-token : write
10
16
steps :
17
+ # retrieve your distributions here
11
18
- uses : actions/checkout@v1
12
19
- name : Set up Python
13
20
uses : actions/setup-python@v1
16
23
- name : Install dependencies
17
24
run : |
18
25
python -m pip install --upgrade pip
19
- pip install setuptools wheel twine
20
- - name : Build and publish
21
- env :
22
- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
23
- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
26
+ pip install setuptools wheel
27
+ - name : Build
24
28
run : |
25
29
python setup.py sdist bdist_wheel
26
- twine upload dist/*
30
+ - name : Publish package distributions to PyPI
31
+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ mó bǎn - 模板 General purpose static text generator
5
5
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
6
6
:target: https://www.patreon.com/chfw
7
7
8
- .. image:: https://api.travis-ci.org/moremoban/moban.svg?branch=master
9
- :target: http://travis-ci.org/moremoban/moban
10
-
11
8
.. image:: https://dev.azure.com/moremoban/moban/_apis/build/status/moremoban.moban
12
9
:target: https://dev.azure.com/moremoban/moban/_build?definitionId=1&_a=summary
13
10
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ In alphabetical order:
7
7
8
8
* `Andrew Scheller <https://github.com/lurch >`_
9
9
* `Ayan Banerjee <https://github.com/ayan-b >`_
10
- * `Charlie Liu <https://github.com/CLiu13 >`_
10
+ * `CLiu13 <https://github.com/CLiu13 >`_
11
11
* `John Vandenberg <https://github.com/jayvdb >`_
12
12
* `Joshua Chung <https://github.com/seeeturtle >`_
13
+ * `Kacper Potyrała <https://github.com/SerekKiri >`_
13
14
* `pgajdos <https://github.com/pgajdos >`_
14
15
* `PRAJWAL M <https://github.com/PrajwalM2212 >`_
15
16
* `salotz <https://github.com/salotz >`_
16
- * `SerekKiri <https://github.com/SerekKiri >`_
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ mó bǎn - 模板 General purpose static text generator
5
5
.. image :: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
6
6
:target: https://www.patreon.com/chfw
7
7
8
- .. image :: https://api.travis-ci.org/moremoban/moban.svg?branch=master
9
- :target: http://travis-ci.org/moremoban/moban
10
-
11
8
.. image :: https://dev.azure.com/moremoban/moban/_apis/build/status/moremoban.moban
12
9
:target: https://dev.azure.com/moremoban/moban/_build?definitionId=1&_a=summary
13
10
Original file line number Diff line number Diff line change 57
57
# The theme to use for HTML and HTML Help pages. See the documentation for
58
58
# a list of builtin themes.
59
59
#
60
- html_theme = 'alabaster '
60
+ html_theme = 'sphinx_rtd_theme '
61
61
62
62
# Add any paths that contain custom static files (such as style sheets) here,
63
63
# relative to this directory. They are copied after the builtin static files,
68
68
# -- Options for intersphinx extension ---------------------------------------
69
69
70
70
# Example configuration for intersphinx: refer to the Python standard library.
71
- intersphinx_mapping = {'https://docs.python.org/3/' : None }
71
+ intersphinx_mapping = {'python' : ('https://docs.python.org/3' ,
72
+ 'python-inv.txt' )}
72
73
# TODO: html_theme not configurable upstream
73
74
html_theme = 'default'
74
75
You can’t perform that action at this time.
0 commit comments