Skip to content

Commit ef16e8a

Browse files
authored
Merge pull request #117 from bobbrodie/6.0.x
SP-995 Dependency Updates
2 parents 560d04a + 9142a9f commit ef16e8a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
python-version: [3.8, 3.9, '3.10', 3.11]
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-python@v4
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install pipenv

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Package release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: 3.8
1717
- run: |

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pydantic = "==2.7.4"
1212
black = "==24.4.2"
1313
pytest = "==8.2.2"
1414
pytest-mock = "==3.14.0"
15-
mypy = "==1.10.0"
15+
mypy = "==1.10.1"
1616
pytest-mypy-plugins = "==3.1.2"
1717
pytest-cov = "==5.0.0"
1818

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bitpay"
7-
version = "6.0.4"
7+
version = "6.0.5"
88
authors = [
99
{ name="Antonio Buedo", email="[email protected]" },
1010
]
1111
requires-python = ">=3.8"
1212
dependencies = [
13-
"ecdsa >= 0.18.0",
14-
"requests >= 2.31.0",
15-
"pydantic == 2.3.0"
13+
"ecdsa >= 0.19.0",
14+
"requests >= 2.32.3",
15+
"pydantic == 2.7.4"
1616
]
1717
description = "Accept bitcoin with BitPay"
1818
readme = "README.md"

src/bitpay/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ class Config(Enum):
55
TEST_URL = "https://test.bitpay.com/"
66
PROD_URL = "https://bitpay.com/"
77
BITPAY_API_VERSION = "2.0.0"
8-
BITPAY_PLUGIN_INFO = "BitPay_Python_Client_v6.0.4"
8+
BITPAY_PLUGIN_INFO = "BitPay_Python_Client_v6.0.5"
99
BITPAY_API_FRAME = "std"
1010
BITPAY_API_FRAME_VERSION = "1.0.0"

0 commit comments

Comments
 (0)