-
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.
Merge branch 'main' of github.com:bjia56/armv7l-wheels
- Loading branch information
Showing
14 changed files
with
428 additions
and
27 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
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
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,89 @@ | ||
<!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"> | ||
Brotli | ||
</section> | ||
<pre><code>pip install Brotli --extra-index-url https://bjia56.github.io/armv7l-wheels/</code></pre> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.7/Brotli-1.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.8/Brotli-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.9/Brotli-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.10/Brotli-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.11/Brotli-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/Brotli-1.1.0-cpython3.12/Brotli-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
Brotli-1.1.0-cp312-cp312-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!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> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/cmake-3.27.6-cpython3.8/cmake-3.27.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
cmake-3.27.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/cmake-3.27.6-cpython3.9/cmake-3.27.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
cmake-3.27.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/cmake-3.27.6-cpython3.10/cmake-3.27.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
cmake-3.27.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/cmake-3.27.6-cpython3.11/cmake-3.27.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
cmake-3.27.6-cp311-cp311-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
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,89 @@ | ||
<!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"> | ||
faust_cchardet | ||
</section> | ||
<pre><code>pip install faust_cchardet --extra-index-url https://bjia56.github.io/armv7l-wheels/</code></pre> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.7/faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.8/faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.9/faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.10/faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.11/faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl | ||
</a> | ||
<br/> | ||
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/faust_cchardet-2.1.19-cpython3.12/faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"> | ||
faust_cchardet-2.1.19-cp312-cp312-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
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
Oops, something went wrong.