Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin jsonpickle to 3.0.3 #1661

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Pin jsonpickle to 3.0.3
- v3.0.3 is the last version of jsonpickle that contains the setup.py file required by fpm to build the third party package.
- This is intended as an interim fix for the main branch to allow the workflows to complete.
- Work on the `ubuntu-22.04` branch uses `wheel2deb` to build `deb` packages for the newer python modules.

Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed May 10, 2024
commit 94769706704357dc0e9daebcc1007bd7ca80ab2c
2 changes: 1 addition & 1 deletion .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
packaging \
python-dateutil \
msgpack-python \
jsonpickle
jsonpickle=3.0.3
- name: Prepare package and set version
run: |
./bump_version.sh ${{ needs.taginfos.outputs.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/ubuntu-2004/build-3rd-parties.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ build_from_pypi base58
### https://github.com/hyperledger/indy-plenum/runs/4166593170?check_suite_focus=true#step:5:5304
build_from_pypi importlib-metadata 3.10.1
build_from_pypi ioflo
build_from_pypi jsonpickle
build_from_pypi jsonpickle 3.0.3
build_from_pypi leveldb
build_from_pypi libnacl 1.6.1
build_from_pypi msgpack-python
Expand Down
2 changes: 1 addition & 1 deletion dev-setup/ubuntu/ubuntu-2004/SetupVMTest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
iniconfig==1.1.1 \
intervaltree==2.1.0 \
ioflo==2.0.2 \
jsonpickle==2.0.0 \
jsonpickle==3.0.3 \
leveldb==0.201 \
libnacl==1.7.2 \
mccabe==0.6.1 \
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ def run(self):
'importlib_metadata==3.10.1',
# 'ioflo==2.0.2',
'ioflo',
# 'jsonpickle==2.0.0',
'jsonpickle',
'jsonpickle==3.0.3',
# 'leveldb==0.201',
'leveldb',
# Pinned because of changing size of `crypto_sign_SECRETKEYBYTES` from 32 to 64
Expand Down
Loading