Skip to content

Commit 44fda29

Browse files
committed
utils.version is moved to top again due to the setup.py error.
1 parent 31d25c9 commit 44fda29

File tree

5 files changed

+3
-2
lines changed

5 files changed

+3
-2
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ test:
1111
.PHONY: clean
1212
clean:
1313
make clean -C ./veriloggen
14+
make clean -C ./utils
1415
make clean -C ./examples
1516
make clean -C ./tests
1617
rm -rf *.egg-info build dist *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from setuptools import setup, find_packages
22

3-
import veriloggen.utils.version
3+
import utils.version
44
import re
55
import os
66

7-
m = re.search(r'(\d+\.\d+\.\d+(-.+)?)', veriloggen.utils.version.VERSION)
7+
m = re.search(r'(\d+\.\d+\.\d+(-.+)?)', utils.version.VERSION)
88
version = m.group(1) if m is not None else '0.0.0'
99

1010

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)