Skip to content

Commit 6ffb802

Browse files
authored
Merge pull request #580 from pinax/pin-stripe
Pin Stripe Library
2 parents 893572e + 4c0922d commit 6ffb802

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ common: &common
66
- checkout
77
- restore_cache:
88
keys:
9-
- v2-deps-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
9+
- v3-deps-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
1010
- run:
1111
name: install dependencies
1212
command: pip install --user tox
@@ -28,7 +28,7 @@ common: &common
2828
- ~/.cache/pip
2929
- ~/.local
3030
- ./eggs
31-
key: v2-deps-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
31+
key: v3-deps-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
3232

3333
jobs:
3434
lint:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.DS_Store
2+
Pipfile
3+
Pipfile.lock
24

35
# Byte-compiled / optimized / DLL files
46
__pycache__/

docs/about/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 4.3.1 - 2018-08-04
4+
5+
* Pin `python-stripe` to `>2.0` as that major release broke things in `pinax-stripe` [PR 580](https://github.com/pinax/pinax-stripe/pull/580)
6+
7+
38
## 3.4.1 - 2017-04-21
49

510
This fixes a bug that was introduced in `3.4.0` with customer creation taking a `quantity` parameter.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
author_email=AUTHOR_EMAIL,
6464
description=DESCRIPTION,
6565
long_description=LONG_DESCRIPTION,
66-
version="4.3.0",
66+
version="4.3.1",
6767
license="MIT",
6868
url=URL,
6969
packages=find_packages(),
@@ -88,7 +88,7 @@
8888
install_requires=[
8989
"django-appconf>=1.0.1",
9090
"jsonfield>=1.0.3",
91-
"stripe>=1.7.9",
91+
"stripe>=1.7.9, <2.0",
9292
"django>=1.8",
9393
"pytz",
9494
"six",

0 commit comments

Comments
 (0)