Skip to content

Commit

Permalink
Update Dockerfile. Use directly pypi.org instead of test.pypi.org for…
Browse files Browse the repository at this point in the history
… ragger
  • Loading branch information
tdejoigny-ledger committed Aug 2, 2023
1 parent afb65b1 commit 67f6d35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.2.6] - 2023-08-02

### Changed
- Use directly pypi.org instead of test.pypi.org for ragger

## [3.2.5] - 2023-07-28

### Changed
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG PYTHON_BUILD_DEPS=libffi-dev,python3-dev
RUN apk add $(echo -n "$PYTHON_BUILD_DEPS" | tr , ' ')

# Install test tools (Ragger framework, Speculos emulator, Ledgerblue...)
RUN pip3 install --extra-index-url https://test.pypi.org/simple/ ragger[tests,all_backends]
RUN pip3 install ragger[tests,all_backends]

# Cleanup, remove packages that aren't needed anymore
RUN apk del $(echo -n "$PYTHON_BUILD_DEPS" | tr , ' ')

0 comments on commit 67f6d35

Please sign in to comment.