Skip to content

Commit bfbbf18

Browse files
committed
email address is removed
1 parent a258013 commit bfbbf18

File tree

4 files changed

+14
-38
lines changed

4 files changed

+14
-38
lines changed

scripts/test-3.5.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

scripts/test-2.7.sh renamed to scripts/test-python2.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
#!/bin/sh
22
set -e
33

4-
mkdir 2.7
5-
cd 2.7
4+
mkdir python
5+
cd python
66
virtualenv --python=python .
77
source bin/activate
8+
89
git clone https://github.com/PyHDI/veriloggen.git
910
cd veriloggen
1011
python setup.py install
1112
pip install pytest pytest-pythonpath
1213
mv veriloggen veriloggen.old
13-
make run -C tests PYTHON=python
14-
make clean -C tests
15-
make run -C examples PYTHON=python
16-
make clean -C examples
17-
make test PYTHON=python
14+
15+
python -m pytest -vv .
16+
1817
mv veriloggen.old veriloggen
1918
cd ..
2019
deactivate

scripts/test-3.4.sh renamed to scripts/test-python3.sh

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
#!/bin/sh
22
set -e
33

4-
mkdir 3.4
5-
cd 3.4
4+
mkdir python3
5+
cd python3
66
virtualenv --python=python3 .
77
source bin/activate
8+
89
git clone https://github.com/PyHDI/veriloggen.git
910
cd veriloggen
10-
python3 setup.py install
11+
python setup.py install
1112
pip install pytest pytest-pythonpath
1213
mv veriloggen veriloggen.old
13-
make run -C tests
14-
make clean -C tests
15-
make run -C examples
16-
make clean -C examples
17-
make test
14+
15+
python -m pytest -vv .
16+
1817
mv veriloggen.old veriloggen
1918
cd ..
2019
deactivate

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ def read(filename):
1616
long_description=read('README.rst'),
1717
keywords = 'FPGA, Verilog HDL',
1818
author='Shinya Takamaeda-Yamazaki',
19-
author_email='shinya.takamaeda_at_gmail_com',
2019
license="Apache License 2.0",
2120
url='https://github.com/PyHDI/veriloggen',
2221
packages=find_packages(),
2322
#package_data={ 'path' : ['*.*'], },
24-
install_requires=[ 'pyverilog>=1.0.9', 'ipgen>=0.2.1', 'Jinja2>=2.8' ],
23+
install_requires=[ 'pyverilog>=1.1.0', 'ipgen>=0.3.0', 'Jinja2>=2.8' ],
2524
extras_require={
2625
'graph' : [ 'pygraphviz>=1.3.1' ],
2726
'test' : [ 'pytest>=2.8.2', 'pytest-pythonpath>=0.7' ],

0 commit comments

Comments
 (0)