Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Sep 27, 2023
1 parent a3bf59e commit 0af1f7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ jobs:
needs: create_release # we need to know the upload URL
strategy:
fail-fast: true
matrix:
arch: [x64, aarch64]
steps:
- uses: actions/checkout@v3
- name: venv
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /build

COPY ./ ./
RUN for version in 11; do \
RUN for version in 7 8 9 10 11; do \
"python3.${version}" -m venv ".venv_${version}" && \
source ".venv_${version}"/bin/activate && \
pip3 install --upgrade pip && \
Expand All @@ -24,7 +24,7 @@ RUN for version in 11; do \

WORKDIR /test
COPY ./tests/ ./tests/
RUN for version in 11; do \
RUN for version in 7 8 9 10 11; do \
"python3.${version}" -m venv ".venv_${version}" && \
source ".venv_${version}"/bin/activate && \
pip3 install --upgrade pip && \
Expand Down

0 comments on commit 0af1f7b

Please sign in to comment.