Skip to content

Commit 7ff786e

Browse files
committed
Versions of requirements are updated.
1 parent be40f4b commit 7ff786e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ sudo apt install iverilog
8989
```
9090

9191
- Jinja2: 2.10 or later
92-
- Pyverilog: 1.1.4 or later
93-
- NumPy: 1.14 or later
92+
- Pyverilog: 1.2.0 or later
93+
- NumPy: 1.17 or later
9494

9595
```
9696
pip3 install pyverilog jinja2 numpy
@@ -102,8 +102,8 @@ Optional installation for testing
102102
These are required for automatic testing of **tests** and **examples**.
103103
We recommend to install these testing library to verify experimental features.
104104

105-
- pytest: 3.2 or later
106-
- pytest-pythonpath: 0.7 or later
105+
- pytest: 3.8.1 or later
106+
- pytest-pythonpath: 0.7.3 or later
107107

108108
```
109109
pip3 install pytest pytest-pythonpath
@@ -133,7 +133,7 @@ pip3 install pygraphviz
133133
Install
134134
--------------------
135135

136-
Now you can install Veriloggen using setup.py script.
136+
Now you can install Veriloggen using setup.py script:
137137

138138
```
139139
python3 setup.py install

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ Requirements
105105
sudo apt install iverilog
106106

107107
- Jinja2: 2.10 or later
108-
- Pyverilog: 1.1.4 or later
109-
- NumPy: 1.14 or later
108+
- Pyverilog: 1.2.0 or later
109+
- NumPy: 1.17 or later
110110

111111
::
112112

@@ -119,8 +119,8 @@ These are required for automatic testing of **tests** and **examples**.
119119
We recommend to install these testing library to verify experimental
120120
features.
121121

122-
- pytest: 3.2 or later
123-
- pytest-pythonpath: 0.7 or later
122+
- pytest: 3.8.1 or later
123+
- pytest-pythonpath: 0.7.3 or later
124124

125125
::
126126

@@ -151,7 +151,7 @@ libraries are required.
151151
Install
152152
-------
153153

154-
Now you can install Veriloggen using setup.py script.
154+
Now you can install Veriloggen using setup.py script:
155155

156156
::
157157

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ def read(filename):
2424
package_data={'veriloggen.utils': ['VERSION'],
2525
'veriloggen.simulation': ['*.cpp'], },
2626
install_requires=['jinja2>=2.10',
27-
'pyverilog>=1.1.4',
28-
'numpy>=1.14'],
27+
'pyverilog>=1.2.0',
28+
'numpy>=1.17'],
2929
extras_require={
30-
'test': ['pytest>=3.2', 'pytest-pythonpath>=0.7'],
30+
'test': ['pytest>=3.8.1', 'pytest-pythonpath>=0.7.3'],
3131
'graph': ['pygraphviz>=1.3.1'],
3232
},
3333
)

0 commit comments

Comments
 (0)