File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88.coverage
99* ,cover
1010* .xml
11+ * .whl
1112* .pem
1213* .aid
1314htmlcov /
Original file line number Diff line number Diff line change @@ -3,6 +3,16 @@ FROM python:${VERSION}-bookworm
33
44COPY 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+
616RUN 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 \
Original file line number Diff line number Diff line change 11cryptography ~= 41.0.2
22importlib-resources == 3.0.0 ; python_version < '3.9'
3- datatrails-archivist == 0.29.0a1
43pyyaml ~= 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
You can’t perform that action at this time.
0 commit comments