Skip to content

Commit 12abd96

Browse files
authored
Merge pull request #81 from russella-acm/master
Documentation updates to increase wrapper version to 8.0.0
2 parents f930519 + ffa153e commit 12abd96

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
language: python
22
python:
3-
- 2.7
4-
- 3.4
5-
- 3.5
63
- 3.6
74
- 3.7
85
- 3.8
96
- 3.9
107
- 3.10
8+
- 3.11
9+
- 3.12
10+
- 3.13
1111
install:
1212
- pip install coverage coveralls
1313
script:

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# createsend-python history
22

3+
## v8.0.0 - 4 Dec, 2024
4+
* Upgrades to allow this wrapper to be used with Python 3.12 and beyond.
5+
* Breaking: Python versions 3.5 and prior will no longer work with this version of the wrapper.
6+
37
## v7.0.0 - 15 Dec, 2021
48
* Upgrades to Createsend API v3.3 which includes new breaking changes
59
* Breaking: 'client.campaigns' now returned an object to support pagination (use .Results to get the array of campaigns)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# createsend
22

3-
A Python library which implements the complete functionality of the [Campaign Monitor API](http://www.campaignmonitor.com/api/). Requires Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9 or 3.10.
3+
A Python library which implements the complete functionality of the [Campaign Monitor API](http://www.campaignmonitor.com/api/). Requires Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 or later.
44

55
## Installation
66

setup.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="createsend",
5-
version='7.0.0',
5+
version='8.0.0',
66
description="A library which implements the complete functionality of the Campaign Monitor API.",
77
author='Campaign Monitor',
88
author_email='[email protected]',
@@ -35,20 +35,16 @@
3535

3636
# Generally, we support the following.
3737
"Programming Language :: Python",
38-
"Programming Language :: Python :: 2",
3938
"Programming Language :: Python :: 3",
4039

4140
# Specifically, we support the following releases.
42-
"Programming Language :: Python :: 2.7",
43-
"Programming Language :: Python :: 3.0",
44-
"Programming Language :: Python :: 3.1",
45-
"Programming Language :: Python :: 3.3",
46-
"Programming Language :: Python :: 3.4",
47-
"Programming Language :: Python :: 3.5",
4841
"Programming Language :: Python :: 3.6",
4942
"Programming Language :: Python :: 3.7",
5043
"Programming Language :: Python :: 3.8",
5144
"Programming Language :: Python :: 3.9",
5245
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
48+
"Programming Language :: Python :: 3.13",
5349
]
5450
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tox]
77
# pip is broken on py32
8-
envlist = py27, py30, py31, py33, py34, py35, py36, py37, py38, py39, py310
8+
envlist = py36, py37, py38, py39, py310, py311, py312, py313
99

1010
[testenv]
1111
install_command=pip install {packages}

0 commit comments

Comments
 (0)