Skip to content

Commit 3acec7f

Browse files
committed
Remove piwheels.org repo
- looks like all wheels are available on PyPI or can be built w/o extra tools
1 parent beb12b5 commit 3acec7f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:3.11-bullseye AS builder
33
# install/compile wheels
44
WORKDIR /usr/src/app
55
COPY requirements.txt ./
6-
RUN pip wheel --no-cache-dir --prefer-binary --extra-index-url https://www.piwheels.org/simple --wheel-dir /usr/wheels -r requirements.txt
6+
RUN pip wheel --no-cache-dir --prefer-binary --wheel-dir /usr/wheels -r requirements.txt
77

88

99
FROM python:3.11-slim-bullseye

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ pip install -r requirements-dev.txt -U
167167
pip-compile --upgrade --resolver backtracking --allow-unsafe requirements.in
168168
169169
# edit requirements.txt and add/edit platform specific dependencies: RPi.GPIO
170-
# check that all requirements are available for arm7 on https://www.piwheels.org/packages.html, especially cryptography
171170
pip install -r requirements.txt -U
172171
```
173172

0 commit comments

Comments
 (0)