Skip to content

Commit 6e43de9

Browse files
authored
Merge pull request #79 from mwarzybok-sumoheavy/feature/SP-805
SP-805 Update Python Dependencies
2 parents e74b50f + 1779a2a commit 6e43de9

File tree

76 files changed

+346
-297
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+346
-297
lines changed

Pipfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ name = "pypi"
66
[packages]
77
ecdsa = "==0.18.0"
88
requests = "==2.31.0"
9-
pydantic = "==2.5.2"
9+
pydantic = "==2.6.1"
1010

1111
[dev-packages]
12-
black = "==23.11.0"
13-
pytest = "==7.4.3"
12+
black = "==24.1.1"
13+
pytest = "==8.0.0"
1414
pytest-mock = "==3.11.1"
15-
mypy = "==1.7.1"
15+
mypy = "==1.8.0"
1616
pytest-mypy-plugins = "==3.0.0"
1717
pytest-cov = "==4.1.0"
1818

Pipfile.lock

Lines changed: 268 additions & 289 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bitpay"
7-
version = "5.0.2"
7+
version = "5.0.3"
88
authors = [
99
{ name="Antonio Buedo", email="[email protected]" },
1010
]

src/bitpay/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
version 4.0.1
66
See https://developer.bitpay.com/reference/concepts for more information.
77
"""
8+
89
import os
910
import json
1011
from typing import List, Optional

src/bitpay/exceptions/bill_creation_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Creation Exception gets raised when request for bill creation gets failed.
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_delivery_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Delivery Exception gets raised when request for bill delivery gets failed.
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Bill Exception gets raised when some unexpected error occurs while processing a request
33
or trying to manage bills.
44
"""
5+
56
from .bitpay_exception import BitPayException
67

78

src/bitpay/exceptions/bill_query_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Query Exception gets raised when request for bill retrieval gets failed .
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_update_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Update Exception gets raised when it fails to update bill
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/currency_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Currency Exception gets raised when some unexpected error occurs while processing a request
33
or trying to manage currencies.
44
"""
5+
56
from .bitpay_exception import BitPayException
67

78

0 commit comments

Comments
 (0)