Skip to content

Commit 1db2d46

Browse files
committed
fix: fix python3-distro version
Signed-off-by: Kim Ebert <[email protected]>
1 parent 68714b0 commit 1db2d46

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build-scripts/ubuntu-2204/build-indy_node.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ fpm --input-type "python" \
3333
--depends iptables \
3434
--depends libsodium23 \
3535
--depends "indy-plenum(=${plenumDebVersion})" \
36+
--depends "python3-distro(=1.7.0-1)" \
3637
--python-disable-dependency "indy-plenum" \
38+
--python-disable-dependency "python3-distro" \
3739
--no-python-fix-dependencies \
3840
--maintainer "Hyperledger <[email protected]>" \
3941
--before-install "preinst_node" \

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@
5555
(BASE_DIR, ['data/nssm_original.exe'])
5656
)],
5757

58-
install_requires=['indicio-indy-plenum==1.13.2-rc15',
58+
install_requires=['indicio-indy-plenum==1.13.2rc15',
5959
# importlib-metadata needs to be pinned to 3.10.1 because from v4.0.0 the package
6060
# name ends in python3-importlib-metadata_0.0.0_amd64.deb
6161
# see also build-scripts/ubuntu-2004/build-3rd-parties.sh
6262
# https://github.com/hyperledger/indy-plenum/blob/eac38674252b539216be2c40bb13e53c5b70dad2/build-scripts/ubuntu-2004/build-3rd-parties.sh#L104-L106
6363
'importlib-metadata==3.10.1',
6464
'timeout-decorator>=0.5.0',
65-
'distro==1.7.0-1'],
65+
'distro==1.7.0'],
6666
setup_requires=['pytest-runner'],
6767
extras_require={
6868
'tests': tests_require

0 commit comments

Comments
 (0)