Skip to content

Commit

Permalink
Updating pythondata-cpu-minerva to 0.0.post193
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.post94 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot committed Mar 5, 2021
1 parent a3f9c79 commit b11a1b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ jobs:
- name: Build distribution 📦
run: |
python setup.py sdist bdist_wheel
rm dist/*.egg
- name: Check distribution 📦
run: |
du -h dist/*
twine check dist/*
- name: Publish to Test PyPI
Expand Down
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.post191"
version_tuple = (0, 0, 191)
version_str = "0.0.post193"
version_tuple = (0, 0, 193)
try:
from packaging.version import Version as V
pversion = V("0.0.post191")
pversion = V("0.0.post193")
except ImportError:
pass

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

# Tool version info
tool_version_str = "0.0.post92"
tool_version_tuple = (0, 0, 92)
tool_version_str = "0.0.post94"
tool_version_tuple = (0, 0, 94)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post92")
ptool_version = V("0.0.post94")
except ImportError:
pass

Expand Down

0 comments on commit b11a1b3

Please sign in to comment.