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

Update packaging, pycryptome, scalecodec packages #2534

Merged
merged 5 commits into from
Jan 25, 2022
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
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ commands:
command: |
python3 -m venv --copies venv
. venv/bin/activate
python3 -m pip install -U wheel pip pytest pytest-cov pycodestyle
python3 -m pip install -U wheel pip
python3 -m pip install -U -r requirements_dev.txt

- run:
name: install synapse
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ prompt-toolkit>=3.0.4,<3.1.0
lark-parser==0.11.2
Pygments>=2.7.4,<2.8.0
fastjsonschema>=2.14.3,<2.15
packaging>=20.0,<21.0
packaging>=20.0,<22.0
stix2-validator>=3.0.0,<4.0.0
vcrpy>=4.1.1,<4.2.0
base58>=2.1.0,<2.2.0
python-bitcoinlib==0.11.0
pycryptodome>=3.11.0,<3.13.0
pycryptodome>=3.11.0,<3.14.0
typing-extensions>=3.7.4,<5.0.0 # synapse.vendor.xrpl req
scalecodec==1.0.2 # synapse.vendor.substrateinterface req
scalecodec>=1.0.2,<1.0.29 # synapse.vendor.substrateinterface req
cbor2>=5.4.1,<5.4.3
bech32==1.2.0
oauthlib>=3.1.1,<4.0.0
Expand Down
3 changes: 3 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ pytest-cov>=3.0.0,<4.0.0
pycodestyle>=2.8.0,<3.0.0
bump2version>=1.0.1,<1.1.0
pytest-xdist>=2.4.0,<3.0.0
# Temporary until https://github.com/nedbat/coveragepy/issues/1310 is resolved.
coverage>=6.2,<6.3

7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ def run(self):
'prompt-toolkit>=3.0.4,<3.1.0',
'lark-parser==0.11.2',
'Pygments>=2.7.4,<2.8.0',
'packaging>=20.0,<21.0',
'packaging>=20.0,<22.0',
'fastjsonschema>=2.14.3,<2.15',
'stix2-validator>=3.0.0,<4.0.0',
'vcrpy>=4.1.1,<4.2.0',
'base58>=2.1.0,<2.2.0',
'python-bitcoinlib==0.11.0',
'pycryptodome>=3.11.0,<3.13.0',
'pycryptodome>=3.11.0,<3.14.0',
'typing-extensions>=3.7.4,<5.0.0', # synapse.vendor.xrpl req
'scalecodec==1.0.2', # synapse.vendor.substrateinterface req
'scalecodec>=1.0.2,<1.0.29', # synapse.vendor.substrateinterface req
'cbor2>=5.4.1,<5.4.3',
'bech32==1.2.0',
'oauthlib>=3.1.1,<4.0.0',
Expand All @@ -127,6 +127,7 @@ def run(self):
'pycodestyle>=2.8.0,<3.0.0',
'bump2version>=1.0.1,<1.1.0',
'pytest-xdist>=2.4.0,<3.0.0',
'coverage>=6.2,<6.3',
],
},

Expand Down