Skip to content

Commit a6d043e

Browse files
authored
Fix merkleLog confirmation (#89)
AB#9103
1 parent 77f0a27 commit a6d043e

3 files changed

Lines changed: 18 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ dist/
88
.coverage
99
*,cover
1010
*.xml
11+
*.whl
1112
*.pem
1213
*.aid
1314
htmlcov/

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ FROM python:${VERSION}-bookworm
33

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

6+
# when testing a new version of the github datatrails-python repo copy the wheel
7+
# (generated by 'task wheel') from that repo and uncomment
8+
# the following lines. Also comment out the datatrails-archivist line in
9+
# requirements.txt.
10+
# That way one can test an unreleased version of github datatrails-samples.
11+
# NB dont forget to recomment before merging !!
12+
#COPY datatrails*.whl /tmp/
13+
#RUN python3 -m pip -qq install /tmp/datatrails*.whl \
14+
# && rm -f /tmp/datatrails*.whl
15+
616
RUN python3 -m pip -qq install --upgrade pip \
717
&& python3 -m pip -qq install -r /tmp/requirements-dev.txt \
818
&& rm -f /tmp/requirements-dev.txt \

requirements.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
cryptography~=41.0.2
22
importlib-resources==3.0.0; python_version < '3.9'
3-
datatrails-archivist==0.29.0a1
43
pyyaml~=6.0.1
4+
5+
# when testing a new version of the github datatrails-python repo copy the wheel
6+
# (generated by 'task wheel') from that repo and comment
7+
# the following lines. Also do similar in the Dockerfile.
8+
# That way one can test an unreleased version of github datatrails-samples.
9+
# NB dont forget to uncomment before merging !!
10+
datatrails-archivist==0.30.0

0 commit comments

Comments
 (0)