Skip to content

Commit

Permalink
Pin regex in docker to 2021.10.8 (GH-2579)
Browse files Browse the repository at this point in the history
* Pin regex in docker to 2021.10.8
- This is due to 2021.10.8 having arm wheels and newer versions not

I will go see if I can help restore arm build @ https://bitbucket.org/mrabarnett/mrab-regex/issues/399/missing-wheel-for-macosx-and-the-new-m1 soon.

Test: Build on my M1 mac: `docker build -t cooperlees/black .`

* Add in that the pin is only for docker
  • Loading branch information
cooperlees committed Oct 31, 2021
1 parent 9afffac commit 7bf233a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
### Integrations

- Allow to pass `target_version` in the vim plugin (#1319)
- Pin regex module to 2021.10.8 in our docker file as it has arm wheels available
(#2579)

## 21.9b0

Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM python:3-slim

# TODO: Remove regex version pin once we get newer arm wheels
RUN mkdir /src
COPY . /src/
RUN pip install --no-cache-dir --upgrade pip setuptools wheel \
&& apt update && apt install -y git \
&& cd /src \
&& pip install --no-cache-dir regex==2021.10.8 \
&& pip install --no-cache-dir .[colorama,d] \
&& rm -rf /src \
&& apt remove -y git \
Expand Down

0 comments on commit 7bf233a

Please sign in to comment.