We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 205f671 commit e91ffa3Copy full SHA for e91ffa3
package.py
@@ -15,7 +15,10 @@
15
# Configuration
16
17
## Where do we fetch the list of releases from?
18
-RELEASES_URL = "https://api.github.com/repos/Z3Prover/z3/releases/latest"
+## Get the latest release like this:
19
+## RELEASES_URL = "https://api.github.com/repos/Z3Prover/z3/releases/latest"
20
+## Get a specific release like this:
21
+RELEASES_URL = "https://api.github.com/repos/Z3Prover/z3/releases/tags/z3-4.5.0"
22
## How do we extract info from the name of a release file?
23
RELEASE_REGEXP = re.compile(r"^(?P<directory>z3-[0-9\.]+-(?P<platform>x86|x64)-(?P<os>[a-z0-9\.\-]+)).zip$", re.IGNORECASE)
24
0 commit comments