-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da288fb
commit f4aa99f
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"/> | ||
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/> | ||
<!-- Skeleton CSS --> | ||
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet"/> | ||
<!-- Font --> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet" type="text/css"/> | ||
<style> | ||
body { font-family: "Montserrat"; } | ||
code { | ||
font-size: 100%; | ||
display: inline-block !important; | ||
font-size: 1.4rem; } | ||
.header { | ||
margin-top: 15rem; | ||
font-size: 3.6rem; | ||
font-weight: 400; | ||
letter-spacing: -.1rem; } | ||
.text-header { | ||
text-transform: uppercase; | ||
font-size: 1.4rem; | ||
letter-spacing: .2rem; | ||
font-weight: 600; } | ||
.version { | ||
font-size: 2.3rem; | ||
font-style: italic; | ||
font-weight: 300; } | ||
.elem { margin: 1rem 0rem; } | ||
</style> | ||
<title> | ||
PyPI - Python Wheels for armv7l | ||
</title> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> | ||
<script> | ||
function annotateDownloadCount(releaseTag, anchorElement) { | ||
fetch("https://api.github.com/repos/bjia56/armv7l-wheels/releases/tags/" + releaseTag) | ||
.then(async resp => { | ||
let release = await resp.json(); | ||
let downloadCount = release.assets[0].download_count; | ||
anchorElement.innerText = anchorElement.innerText + " (" + downloadCount + " downloads)"; | ||
}) | ||
.catch(e => console.log(e)); | ||
} | ||
|
||
function annotateAll() { | ||
Array.from(document.links).forEach(anchor => annotateDownloadCount(anchor.href.split("/")[7], anchor)); | ||
} | ||
|
||
$(document).ready(annotateAll); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<section class="header"> | ||
cmake | ||
</section> | ||
<pre><code>pip install cmake --extra-index-url https://bjia56.github.io/armv7l-wheels/</code></pre> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/cmake-3.27.6-cpython3.7/cmake-3.27.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
cmake-3.27.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<hr/> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters