Skip to content

Commit 73d110d

Browse files
committed
depend on ecdsa with EdDSA support
1 parent ae60aa8 commit 73d110d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ jobs:
302302
- name: Install dependencies (2.6)
303303
if: ${{ matrix.python-version == '2.6' }}
304304
run: |
305-
wget https://files.pythonhosted.org/packages/98/16/70be2716e24eaf5d81074bb3c05429d60292c2a96613a78ac3d69526ad2a/ecdsa-0.16.1-py2.py3-none-any.whl
306-
pip install ecdsa-0.16.1-py2.py3-none-any.whl
305+
wget https://files.pythonhosted.org/packages/84/0b/61a79cf7f50cdbb703112e903c1a4d3744afedca62220aabfd5a5b5a516d/ecdsa-0.18.0b1-py2.py3-none-any.whl
306+
pip install ecdsa-0.18.0b1-py2.py3-none-any.whl
307307
- name: Install dependencies
308308
if: ${{ matrix.python-version != '2.6' }}
309309
run: pip install -r requirements.txt

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ecdsa>=0.14
1+
ecdsa>=0.18.0b1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
packages=["tlslite", "tlslite.utils", "tlslite.integration"],
2323
package_data={
2424
'package1': ['LICENSE', 'README.md']},
25-
install_requires=['ecdsa>=0.14'],
25+
install_requires=['ecdsa>=0.18.0b1'],
2626
obsoletes=["tlslite"],
2727
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*",
2828
classifiers=[

0 commit comments

Comments
 (0)