Advertisement
Guest User

Untitled

a guest
Jun 21st, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.88 KB | None | 0 0
  1. (libresoc)ghostmansd@libresoc:~/src/openpower-isa$ git diff
  2. diff --git a/setup.py b/setup.py
  3. index 37d63768..683fb463 100644
  4. --- a/setup.py
  5. +++ b/setup.py
  6. @@ -17,6 +17,7 @@ version = '0.0.3'
  7.  # chain creating the HDL comes from.
  8.  cprop = "git+https://git.libre-soc.org/git/cached-property.git@1.5.2" \
  9.          "#egg=cached-property-1.5.2"
  10. +mdis = "git+https://git.libre-soc.org/git/mdis.git#egg=mdis-0.5.1"
  11.  
  12.  # using pip3 for ongoing development is a royal pain.  seriously not
  13.  # recommended.  therefore a number of these dependencies have been
  14. @@ -37,11 +38,13 @@ install_requires = [
  15.  
  16.      # git url needed for having `pip3 install -e .` install from libre-soc git
  17.      'cached-property@'+cprop,
  18. +    'mdis@'+mdis,
  19.  ]
  20.  
  21.  # git url needed for having `setup.py develop` install from libre-soc git
  22.  dependency_links = [
  23.      cprop,
  24. +    mdis,
  25.  ]
  26.  
  27.  test_requires = [
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement