-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
dist_summary.jinja2
39 lines (25 loc) · 1.09 KB
/
dist_summary.jinja2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
jishaku {{ package.version }}
https://pypi.org/project/jishaku/{{ package.version }}/
{{ env('GITHUB_SERVER_URL') }}/{{ env('GITHUB_REPOSITORY') }}/tree/{{ env('tag_name') }}
https://jishaku.readthedocs.io/en/latest/whatsnew.html#version-{{ package.version.replace('.', '-') }}
Built by {{ env('GITHUB_SERVER_URL') }}/{{ env('GITHUB_REPOSITORY') }}/actions/runs/{{ env('GITHUB_RUN_ID') }} (triggered by {{ env('GITHUB_ACTOR') }})
[New commits since {{ last_version }}]({{ env('GITHUB_SERVER_URL') }}/{{ env('GITHUB_REPOSITORY') }}/compare/{{ last_version }}...{{ commit_hash }})
It is advised that you install jishaku directly through the pip package manager.
Install the latest version of jishaku:
```bash
pip install -U jishaku
```
Install specifically this version of jishaku (not recommended):
```bash
pip install -U jishaku=={{ package.version }}
```
Artifacts are included with this release for debugging convenience.
<details>
<summary>Artifact hashes</summary>
{% for file in files %}
### {{file.name}}
MD5: `{{file.md5}}`
SHA1: `{{file.sha1}}`
SHA256: `{{file.sha256}}`
{% endfor %}
</details>