Skip to content

Commit

Permalink
Updating pythondata-cpu-minerva to 0.0.post176
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 <jf@lambdaconcept.com>
> Date:   Fri Jan 22 15:20:35 2021 +0100
>
>     fetch: workaround YosysHQ/yosys#2035.
>

Updated using 0.0.post77 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot committed Feb 4, 2021
1 parent 1f0d2bc commit cb8bbd8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
name: ${{ matrix.os }} - ${{ matrix.python-version}} - Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI

strategy:
matrix:
Expand Down
12 changes: 6 additions & 6 deletions pythondata_cpu_minerva/__init__.py
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/lambdaconcept/minerva"

# Module version
version_str = "0.0.post175"
version_tuple = (0, 0, 175)
version_str = "0.0.post176"
version_tuple = (0, 0, 176)
try:
from packaging.version import Version as V
pversion = V("0.0.post175")
pversion = V("0.0.post176")
except ImportError:
pass

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

# Tool version info
tool_version_str = "0.0.post76"
tool_version_tuple = (0, 0, 76)
tool_version_str = "0.0.post77"
tool_version_tuple = (0, 0, 77)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post76")
ptool_version = V("0.0.post77")
except ImportError:
pass

Expand Down

0 comments on commit cb8bbd8

Please sign in to comment.