Skip to content

Commit

Permalink
Fix merkleLog confirmation (#89)
Browse files Browse the repository at this point in the history
AB#9103
  • Loading branch information
eccles authored Apr 8, 2024
1 parent 77f0a27 commit a6d043e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dist/
.coverage
*,cover
*.xml
*.whl
*.pem
*.aid
htmlcov/
Expand Down
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ FROM python:${VERSION}-bookworm

COPY requirements.txt requirements-dev.txt /tmp/

# when testing a new version of the github datatrails-python repo copy the wheel
# (generated by 'task wheel') from that repo and uncomment
# the following lines. Also comment out the datatrails-archivist line in
# requirements.txt.
# That way one can test an unreleased version of github datatrails-samples.
# NB dont forget to recomment before merging !!
#COPY datatrails*.whl /tmp/
#RUN python3 -m pip -qq install /tmp/datatrails*.whl \
# && rm -f /tmp/datatrails*.whl

RUN python3 -m pip -qq install --upgrade pip \
&& python3 -m pip -qq install -r /tmp/requirements-dev.txt \
&& rm -f /tmp/requirements-dev.txt \
Expand Down
8 changes: 7 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
cryptography~=41.0.2
importlib-resources==3.0.0; python_version < '3.9'
datatrails-archivist==0.29.0a1
pyyaml~=6.0.1

# when testing a new version of the github datatrails-python repo copy the wheel
# (generated by 'task wheel') from that repo and comment
# the following lines. Also do similar in the Dockerfile.
# That way one can test an unreleased version of github datatrails-samples.
# NB dont forget to uncomment before merging !!
datatrails-archivist==0.30.0

0 comments on commit a6d043e

Please sign in to comment.