Skip to content

Commit cb686d7

Browse files
committed
Update requirement docs to match requirements
1 parent 18e1561 commit cb686d7

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

.github/workflows/build.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
name: Build
22

3-
on:
4-
pull_request:
5-
types:
6-
- opened
7-
- reopened
8-
push:
9-
branches-ignore:
10-
- 'master'
3+
on: [push, pull_request]
114

125
jobs:
136
build-and-test:
147
runs-on: ubuntu-latest
158

169
strategy:
1710
matrix:
18-
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
11+
python-version: [3.8, 3.9, '3.10', 3.11]
1912

2013
steps:
2114
- uses: actions/checkout@v3

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@
1414
url="https://github.com/bitpay/python-bitpay-client",
1515
download_url="https://github.com/bitpay/python-bitpay-client/tarball/v3.4.2203",
1616
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"],
17-
python_requires=">=3.7",
17+
python_requires=">=3.8",
1818
install_requires=["requests", "ecdsa"],
1919
classifiers=[
20-
"Programming Language :: Python :: 3.7",
2120
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
@@ -42,7 +41,7 @@
4241
all of the tools you need to use the BitPay API for other
4342
purposes.
4443
45-
This version requires only Python 3.8.
44+
This version requires Python 3.8 or higher.
4645
""",
4746
long_description_content_type="text/markdown",
4847
)

0 commit comments

Comments
 (0)