Re: [myhdl-list] Reusability and encapsulation
Brought to you by:
jandecaluwe
From: Christopher F. <chr...@gm...> - 2015-05-06 16:40:36
|
On 5/6/2015 11:32 AM, Juan Pablo Caram wrote: > Oh, I thought you were referring to which version of MyHDL I have. > > My IPython is 2.4.1 > And Python 2.7.3 > > I believe I installed MyHDL via pip. So I don't know how old the code is... The pip version of MyHDL is 0.8 and is fairly old. You can get the MyHDL version via import myhdl print(myhdl.__version__) The `master` branch is stable but is still the development branch, nothing is merged that breaks the test suite, any existing code should be fine. You can install the latest via: >> pip install https://github.com/jandecaluwe/myhdl/archive/master.zip or >> pip install git+https://github.com/jandecaluwe/myhdl Regards, Chris |