Skip to content

Commit

Permalink
REL: download same CUDD tarball from a mirror
Browse files Browse the repository at this point in the history
to ensure stability of tests on Travis CI, and
of package installation. The tarball hash is unchanged.

This change has been motivated by recent unavailability
of the location:  ftp://vlsi.colorado.edu

close #32
  • Loading branch information
johnyf committed Mar 9, 2018
1 parent 94c1a94 commit dc0b3c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions download.py
Expand Up @@ -30,8 +30,8 @@
CUDD_VERSION = '3.0.0'
CUDD_TARBALL = 'cudd-{v}.tar.gz'.format(v=CUDD_VERSION)
CUDD_URL = (
'ftp://vlsi.colorado.edu/'
'pub/cudd-{v}.tar.gz').format(v=CUDD_VERSION)
'https://sourceforge.net/projects/cudd-mirror/files/'
'cudd-{v}.tar.gz/download').format(v=CUDD_VERSION)
CUDD_SHA256 = (
'b8e966b4562c96a03e7fbea239729587'
'd7b395d53cadcc39a7203b49cf7eeb69')
Expand Down

0 comments on commit dc0b3c3

Please sign in to comment.