Skip to content

Commit

Permalink
Merge pull request #117 from bobbrodie/6.0.x
Browse files Browse the repository at this point in the history
SP-995 Dependency Updates
  • Loading branch information
bobbrodie authored Jul 2, 2024
2 parents 560d04a + 9142a9f commit ef16e8a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
python-version: [3.8, 3.9, '3.10', 3.11]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
name: Package release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
- run: |
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pydantic = "==2.7.4"
black = "==24.4.2"
pytest = "==8.2.2"
pytest-mock = "==3.14.0"
mypy = "==1.10.0"
mypy = "==1.10.1"
pytest-mypy-plugins = "==3.1.2"
pytest-cov = "==5.0.0"

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "bitpay"
version = "6.0.4"
version = "6.0.5"
authors = [
{ name="Antonio Buedo", email="[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"ecdsa >= 0.18.0",
"requests >= 2.31.0",
"pydantic == 2.3.0"
"ecdsa >= 0.19.0",
"requests >= 2.32.3",
"pydantic == 2.7.4"
]
description = "Accept bitcoin with BitPay"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/bitpay/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ class Config(Enum):
TEST_URL = "https://test.bitpay.com/"
PROD_URL = "https://bitpay.com/"
BITPAY_API_VERSION = "2.0.0"
BITPAY_PLUGIN_INFO = "BitPay_Python_Client_v6.0.4"
BITPAY_PLUGIN_INFO = "BitPay_Python_Client_v6.0.5"
BITPAY_API_FRAME = "std"
BITPAY_API_FRAME_VERSION = "1.0.0"

0 comments on commit ef16e8a

Please sign in to comment.