Skip to content

Commit

Permalink
Updating pythondata-cpu-minerva to 0.0.post180
Browse files Browse the repository at this point in the history
Updated data to v0.0-99-g0b5f6b2 based on 0b5f6b2 from https://github.com/lambdaconcept/minerva.
> commit 0b5f6b2
> Author: Jean-François Nguyen <[email protected]>
> Date:   Fri Jan 22 15:20:35 2021 +0100
>
>     fetch: workaround YosysHQ/yosys#2035.
>

Updated using 0.0.post81 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot committed Feb 4, 2021
1 parent e471c70 commit 3ac9029
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,16 @@ jobs:
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Publish to Test PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
twine upload --repository testpypi dist/*
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
twine upload testpypi dist/*
12 changes: 6 additions & 6 deletions pythondata_cpu_minerva/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/lambdaconcept/minerva"

# Module version
version_str = "0.0.post179"
version_tuple = (0, 0, 179)
version_str = "0.0.post180"
version_tuple = (0, 0, 180)
try:
from packaging.version import Version as V
pversion = V("0.0.post179")
pversion = V("0.0.post180")
except ImportError:
pass

Expand All @@ -32,11 +32,11 @@
"""

# Tool version info
tool_version_str = "0.0.post80"
tool_version_tuple = (0, 0, 80)
tool_version_str = "0.0.post81"
tool_version_tuple = (0, 0, 81)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post80")
ptool_version = V("0.0.post81")
except ImportError:
pass

Expand Down

0 comments on commit 3ac9029

Please sign in to comment.