Skip to content

Commit e491690

Browse files
committed
Updated the version requirements.
1 parent 5ae53c8 commit e491690

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ language: python
33
sudo: false
44

55
python:
6-
- 3.6
6+
- 3.7
77

88
addons:
99
apt:
1010
packages:
1111
- iverilog
1212

1313
install:
14-
- pip install jinja2 pytest pytest-pythonpath
14+
- pip install pytest pytest-pythonpath jinja2
1515

1616
script:
1717
- python -m pytest tests

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ pip3 install jinja2
100100
Optional Installation
101101
--------------------
102102

103-
- pytest: 3.2 or later
104-
- pytest-pythonpath: 0.7 or later
103+
- pytest: 3.8.1 or later
104+
- pytest-pythonpath: 0.7.3 or later
105105

106106
These are required for the testing execution of test codes in tests and examples.
107107

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ Requirements
109109
Optional Installation
110110
---------------------
111111

112-
- pytest: 3.2 or later
113-
- pytest-pythonpath: 0.7 or later
112+
- pytest: 3.8.1 or later
113+
- pytest-pythonpath: 0.7.3 or later
114114

115115
These are required for the testing execution of test codes in tests and
116116
examples.

pyverilog/utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.1.4"
1+
VERSION = "1.2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(filename):
2424
package_data={'pyverilog.ast_code_generator': ['template/*'], },
2525
install_requires=['Jinja2>=2.10'],
2626
extras_require={
27-
'test': ['pytest>=3.2', 'pytest-pythonpath>=0.7'],
27+
'test': ['pytest>=3.8.1', 'pytest-pythonpath>=0.7.3'],
2828
'graph': ['pygraphviz>=1.3.1'],
2929
},
3030
)

0 commit comments

Comments
 (0)