Skip to content

Commit 07e95f6

Browse files
Fixing formatting (#197)
1 parent 1e1051e commit 07e95f6

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ MANIFEST
77
# Output of building package
88
*.egg-info
99
dist
10+
build/*
1011

1112
# Output of running coverage locally
1213
cover

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
===============================
2+
Optimizely Python SDK Changelog
3+
===============================
4+
15
3.2.0b1
26
-------
37

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
=====================
12
Optimizely Python SDK
23
=====================
34

@@ -30,7 +31,7 @@ dashboard, please contact your Optimizely account executive.
3031
Using the SDK
3132
~~~~~~~~~~~~~
3233

33-
You can initialize the Optimizely instance in three ways: with a datafile, by providing an `sdk_key`, or by providing an implementation of `config_manager.BaseConfigManager`_. Each method is described below.
34+
You can initialize the Optimizely instance in three ways: with a datafile, by providing an `sdk_key`, or by providing an implementation of `BaseConfigManager`_. Each method is described below.
3435

3536
1. Initialize Optimizely with a datafile. This datafile will be used as
3637
ProjectConfig throughout the life of Optimizely instance.
@@ -41,9 +42,9 @@ You can initialize the Optimizely instance in three ways: with a datafile, by pr
4142
)
4243

4344
2. Initialize Optimizely by providing an 'sdk_key'. This will initialize
44-
a PollingConfigManager that makes an HTTP GET request to the URL (formed
45-
using your provided `sdk key` and the default datafile CDN URL
46-
template) to asynchronously download the project datafile at regular
45+
a PollingConfigManager that makes an HTTP GET request to the URL
46+
(formed using your provided `sdk key` and the default datafile CDN URL template)
47+
to asynchronously download the project datafile at regular
4748
intervals and update ProjectConfig when a new datafile is received. A
4849
hard-coded datafile can also be provided along with the `sdk_key` that
4950
will be used initially before any update.
@@ -101,7 +102,7 @@ You may also provide your own logger, error_handler, or
101102
notification_center.
102103

103104
Advanced configuration
104-
''''''''''''''''''''''
105+
''''''''''''''''''''''
105106

106107
The following properties can be set to override the default
107108
configurations for `PollingConfigManager`.
@@ -216,7 +217,6 @@ Please see `CONTRIBUTING`_.
216217
.. _Full Stack documentation: https://docs.developers.optimizely.com/full-stack/docs
217218
.. _Rollouts documentation: https://docs.developers.optimizely.com/rollouts/docs
218219
.. _CONTRIBUTING: CONTRIBUTING.rst
219-
.. _config_manager.BaseConfigManager:: https://github.com/optimizely/python-sdk/tree/master/optimizely/config_manager.py#L32
220220
.. _BaseConfigManager: https://github.com/optimizely/python-sdk/tree/master/optimizely/config_manager.py#L32
221221

222222
.. |PyPI version| image:: https://badge.fury.io/py/optimizely-sdk.svg

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
name='optimizely-sdk',
3333
version=__version__,
3434
description='Python SDK for Optimizely X Full Stack.',
35-
long_description=about_text + '\n\n# Readme: \n' + README + '\n\n# Change Log: \n' + CHANGELOG,
35+
long_description=about_text,
3636
author='Optimizely',
3737
author_email='[email protected]',
3838
url='https://github.com/optimizely/python-sdk',

0 commit comments

Comments
 (0)