Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
- name: Install pipenv
run: |
pip3 install pipenv
Expand All @@ -30,7 +30,7 @@ jobs:

strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12, 3.13, 3.14]
python-version: ["3.10", 3.11, 3.12, 3.13, 3.14]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
- run: |
pip3 install --upgrade build
python -m build
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "bitpay"
version = "7.0.8"
version = "8.0.0"
authors = [
{ name="Antonio Buedo", email="sales-engineering@bitpay.com" },
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"ecdsa >= 0.19.1",
"requests >= 2.32.5",
Expand All @@ -18,7 +18,6 @@ description = "Accept bitcoin with BitPay"
readme = "README.md"
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
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_v7.0.8"
BITPAY_PLUGIN_INFO = "BitPay_Python_Client_v8.0.0"
BITPAY_API_FRAME = "std"
BITPAY_API_FRAME_VERSION = "1.0.0"