Skip to content

Commit a7bdc66

Browse files
authored
Merge pull request #228 from tomato42/new-uris
update URIs and badges after migration to tlsfuzzer org
2 parents 0e464f2 + 146f35d commit a7bdc66

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Pure-Python ECDSA and ECDH
22

3-
[![build status](https://travis-ci.org/warner/python-ecdsa.png)](http://travis-ci.org/warner/python-ecdsa)
4-
[![Coverage Status](https://coveralls.io/repos/warner/python-ecdsa/badge.svg)](https://coveralls.io/r/warner/python-ecdsa)
5-
[![condition coverage](https://img.shields.io/badge/condition%20coverage-81%25-yellow)](https://travis-ci.org/warner/python-ecdsa/jobs/626479178#L776)
3+
[![Build Status](https://travis-ci.com/tlsfuzzer/python-ecdsa.svg?branch=master)](https://travis-ci.com/tlsfuzzer/python-ecdsa)
4+
[![Coverage Status](https://coveralls.io/repos/github/tlsfuzzer/python-ecdsa/badge.svg?branch=master)](https://coveralls.io/github/tlsfuzzer/python-ecdsa?branch=master)
5+
[![condition coverage](https://img.shields.io/badge/condition%20coverage-84%25-yellow)](https://travis-ci.com/github/tlsfuzzer/python-ecdsa/jobs/456999547#L586)
66
[![Latest Version](https://img.shields.io/pypi/v/ecdsa.svg?style=flat)](https://pypi.python.org/pypi/ecdsa/)
77
![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat)
88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
long_description_content_type="text/markdown",
2323
author="Brian Warner",
2424
author_email="warner@lothar.com",
25-
url="http://github.com/warner/python-ecdsa",
25+
url="http://github.com/tlsfuzzer/python-ecdsa",
2626
packages=["ecdsa"],
2727
package_dir={"": "src"},
2828
license="MIT",

src/ecdsa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
)
3434
from .der import UnexpectedDER
3535

36-
# This code comes from http://github.com/warner/python-ecdsa
36+
# This code comes from http://github.com/tlsfuzzer/python-ecdsa
3737
from ._version import get_versions
3838

3939
__version__ = get_versions()["version"]

src/ecdsa/numbertheory.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def phi(n): # pragma: no cover
387387
warnings.warn(
388388
"Function is unused by library code. If you use this code, "
389389
"please open an issue in "
390-
"https://github.com/warner/python-ecdsa",
390+
"https://github.com/tlsfuzzer/python-ecdsa",
391391
DeprecationWarning,
392392
)
393393

@@ -417,7 +417,7 @@ def carmichael(n): # pragma: no cover
417417
warnings.warn(
418418
"Function is unused by library code. If you use this code, "
419419
"please open an issue in "
420-
"https://github.com/warner/python-ecdsa",
420+
"https://github.com/tlsfuzzer/python-ecdsa",
421421
DeprecationWarning,
422422
)
423423

@@ -432,7 +432,7 @@ def carmichael_of_factorized(f_list): # pragma: no cover
432432
warnings.warn(
433433
"Function is unused by library code. If you use this code, "
434434
"please open an issue in "
435-
"https://github.com/warner/python-ecdsa",
435+
"https://github.com/tlsfuzzer/python-ecdsa",
436436
DeprecationWarning,
437437
)
438438

@@ -452,7 +452,7 @@ def carmichael_of_ppower(pp): # pragma: no cover
452452
warnings.warn(
453453
"Function is unused by library code. If you use this code, "
454454
"please open an issue in "
455-
"https://github.com/warner/python-ecdsa",
455+
"https://github.com/tlsfuzzer/python-ecdsa",
456456
DeprecationWarning,
457457
)
458458

@@ -469,7 +469,7 @@ def order_mod(x, m): # pragma: no cover
469469
warnings.warn(
470470
"Function is unused by library code. If you use this code, "
471471
"please open an issue in "
472-
"https://github.com/warner/python-ecdsa",
472+
"https://github.com/tlsfuzzer/python-ecdsa",
473473
DeprecationWarning,
474474
)
475475

@@ -495,7 +495,7 @@ def largest_factor_relatively_prime(a, b): # pragma: no cover
495495
warnings.warn(
496496
"Function is unused by library code. If you use this code, "
497497
"please open an issue in "
498-
"https://github.com/warner/python-ecdsa",
498+
"https://github.com/tlsfuzzer/python-ecdsa",
499499
DeprecationWarning,
500500
)
501501

@@ -520,7 +520,7 @@ def kinda_order_mod(x, m): # pragma: no cover
520520
warnings.warn(
521521
"Function is unused by library code. If you use this code, "
522522
"please open an issue in "
523-
"https://github.com/warner/python-ecdsa",
523+
"https://github.com/tlsfuzzer/python-ecdsa",
524524
DeprecationWarning,
525525
)
526526

0 commit comments

Comments
 (0)