Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache

- name: Cache poetry install
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ runner.os }}
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Cache deps
id: cache-deps
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ runner.os }}
Expand Down
10 changes: 10 additions & 0 deletions byteguide/templates/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,16 @@ <h5>Upload version to project</h5>
<b>7. Show</b><br/><br/>
<img src="{{ url_for('static', filename='guide-1.png')}}" class="resize"/>
<br/>
<hr>

<h3>Known Issues</h3>
<hr/>
<div>
<ul>
<li><strong>Pre-release versions are not supported.</strong> The version is extracted by taking the value after the last <code>-</code> in the filename. If a pre-release tag is used (e.g. <code>myproject-1.0.0-alpha.zip</code>), the program will interpret <code>alpha</code> as the version instead of <code>1.0.0-alpha</code>. Only stable release versions without a <code>-</code> in the version string should be used (e.g. <code>myproject-1.0.0.zip</code>).</li>
</ul>
</div>
<br/>

{% if copyright %}
<hr>
Expand Down