Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation for EU users #221

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ Contributors
- Janusz Skonieczny `@wooyek <https://github.com/wooyek>`_
- Richard Dawe `@richdawe77 <https://github.com/rdawemsys>`_
- John Keyes `@jkeyes <https://github.com/jkeyes>`_
- Fran Vélez `@franciscovelez <https://github.com/franciscovelez>`_
- ADD YOURSELF HERE (and link to your github page)
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
- [Compare to latest release][unreleased]

## [1.3.11] - 2021-12-13
- [#221](https://github.com/SparkPost/python-sparkpost/pull/221) Update documentation for EU users

## [1.3.10] - 2021-11-09
- [#219](https://github.com/SparkPost/python-sparkpost/pull/219) Support for perform_substitution

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ For SparkPost EU and Enterprise accounts, pass in a second parameter to set the

.. code-block:: python

from sparkpost import SparkPost
sp = SparkPost('YOUR API KEY', 'https://api.eu.sparkpost.com')
from sparkpost import SparkPost, EU_API
sp = SparkPost('YOUR API KEY', EU_API)

.. _API & SMTP: https://app.sparkpost.com/#/configuration/credentials

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='sparkpost',
version='1.3.10',
version='1.3.11',
author='SparkPost',
author_email='[email protected]',
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion sparkpost/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .transmissions import Transmissions


__version__ = '1.3.10'
__version__ = '1.3.11'

EU_API = 'api.eu.sparkpost.com'
US_API = 'api.sparkpost.com'
Expand Down