projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9854fdd
)
litex_setup: move requests import to avoid having to install it on travis.
author
Florent Kermarrec
<florent@enjoy-digital.fr>
Wed, 20 May 2020 09:30:50 +0000
(11:30 +0200)
committer
Florent Kermarrec
<florent@enjoy-digital.fr>
Wed, 20 May 2020 09:30:50 +0000
(11:30 +0200)
litex_setup.py
patch
|
blob
|
history
diff --git
a/litex_setup.py
b/litex_setup.py
index 6438aa9b176a723895167d6d9c48471704609fee..cd0d43a012a6db98cc2b65c56ff9539ca1080396 100755
(executable)
--- a/
litex_setup.py
+++ b/
litex_setup.py
@@
-7,7
+7,6
@@
import shutil
import hashlib
from collections import OrderedDict
-import requests
import urllib.request
current_path = os.path.abspath(os.curdir)
@@
-106,6
+105,7
@@
litex_setup_url = "https://raw.githubusercontent.com/enjoy-digital/litex/master/
current_sha1 = hashlib.sha1(open(os.path.realpath(__file__)).read().encode("utf-8")).hexdigest()
print("[checking litex_setup.py]...")
try:
+ import requests
r = requests.get(litex_setup_url)
if r.status_code != 404:
upstream_sha1 = hashlib.sha1(r.content).hexdigest()