Skip to content

Commit 1d2575b

Browse files
committed
Fix Uploading + Bump Version
1 parent 78c0eca commit 1d2575b

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666
python3 ./setup.py sdist
6767
- uses: actions/download-artifact@v3
6868
with:
69-
path: ./dist/*.whl
69+
path: ./artifact
70+
- run: mv ./artifact/* ./dist
7071
- name: Set default for env.NEW_TAG
7172
run: echo "NEW_TAG=NO_NEW_TAG" >> $GITHUB_ENV
7273
- name: Check for new version

Readme.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ A SWIG-based Python wrapper around [Yosys](https://github.com/yosyshq/yosys)'s
44
`libparse`, for all your lib file parsing needs.
55

66
# Requirements
7-
* Python 3.6+
7+
## Running
8+
* UNIX or UNIX-like operating system (Windows untested)
9+
* Python 3.6+ (CPython or PyPy) with PIP
10+
* `python3 -m pip install wheel`
11+
12+
## Building
13+
Running requirements +
14+
815
* A C++11 compiler
916
* GNU Make
17+
* SWIG
1018

1119
# License
1220
Apache 2.0. Check 'License'.

libparse/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"
22

33
if __name__ == "__main__":
44
print(__version__, end="")

0 commit comments

Comments
 (0)