Skip to content

Commit

Permalink
Downgrade cryptography (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Radek Lát authored Dec 30, 2022
1 parent 49d9027 commit e7f6571
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ Types of changes are:

## [Unreleased]

## [2.1.7] - 2022-12-30

### Fixes

- Downgrade `cryptography` to allow build for armv7.

## [2.1.6] - 2022-12-29

### Fixes
Expand Down Expand Up @@ -114,7 +120,8 @@ Types of changes are:

- Initial release

[Unreleased]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.6...HEAD
[Unreleased]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.7...HEAD
[2.1.7]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.6...2.1.7
[2.1.6]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.5...2.1.6
[2.1.5]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.4...2.1.5
[2.1.4]: https://github.com/radeklat/todoist-habitica-sync/compare/2.1.3...2.1.4
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ FROM python:${PYTHON_VERSION}-slim
WORKDIR /app

RUN apt-get --allow-releaseinfo-change update
RUN apt-get install build-essential libssl-dev libffi-dev python3-dev cargo -y
RUN apt-get install build-essential libssl-dev libffi-dev python3-dev -y
RUN python -m pip install --upgrade pip
RUN pip install poetry

# Doesn't build consistently for armv7
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
RUN pip install "cryptography<3.5" poetry

COPY pyproject.toml poetry.lock ./

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "todoist-habitica-sync"
version = "2.1.6"
version = "2.1.7"
description = "One way synchronisation from Todoist to Habitica."
authors = ["Radek Lát <[email protected]>"]
homepage = "https://github.com/radeklat/todoist-habitica-sync"
Expand Down Expand Up @@ -98,7 +98,7 @@ ignore_missing_imports = true
[tool.delfino.plugins.delfino-docker.docker_build]
dockerhub_username = "radeklat"
build_for_platforms = [
# "linux/arm/v7",
"linux/arm/v7",
"linux/arm64",
"linux/amd64",
]

0 comments on commit e7f6571

Please sign in to comment.