Skip to content

Commit 0812ef6

Browse files
committed
py.typed, updated version in docs, correct timeout comment
1 parent 0572ec9 commit 0812ef6

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ dist/
55
__pycache__/
66
reddit_experiments.egg-info/
77
venv*
8+
.idea/

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Upgrade or integrate reddit-experiments package:
6868
.. code-block:: python
6969
7070
# import latest reddit-experiments package in service requirements.txt
71-
reddit-experiments>=1.3.11
71+
reddit-experiments>=1.3.13
7272
7373
Initialize :code:`decider` instance on Baseplate context
7474
--------------------------------------------------------

reddit_decider/py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# https://www.python.org/dev/peps/pep-0561/#packaging-type-information

reddit_experiments/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def experiments_client_from_config(
361361
experiment configuration fetcher daemon.
362362
``timeout`` (optional)
363363
The time that we should wait for the file specified by ``path`` to
364-
exist. Defaults to `None` which is `infinite`.
364+
exist. (defaults to not blocking).
365365
``backoff`` (optional)
366366
The base amount of time for exponential backoff when trying to find the
367367
experiments config file. Defaults to no backoff between tries.

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"reddit-decider~=1.2.31",
2323
"typing_extensions>=3.10.0.0,<5.0",
2424
],
25-
package_data={"reddit_experiments": ["py.typed"]},
25+
package_data={
26+
"reddit_experiments": ["py.typed"],
27+
"reddit_decider": ["py.typed"]
28+
},
2629
zip_safe=True,
2730
classifiers=[
2831
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)