File tree 5 files changed +8
-3
lines changed 5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 5
5
__pycache__ /
6
6
reddit_experiments.egg-info /
7
7
venv *
8
+ .idea /
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Upgrade or integrate reddit-experiments package:
68
68
.. code-block :: python
69
69
70
70
# import latest reddit-experiments package in service requirements.txt
71
- reddit- experiments>= 1.3 .11
71
+ reddit- experiments>= 1.3 .13
72
72
73
73
Initialize :code: `decider ` instance on Baseplate context
74
74
--------------------------------------------------------
Original file line number Diff line number Diff line change
1
+ # https://www.python.org/dev/peps/pep-0561/#packaging-type-information
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ def experiments_client_from_config(
361
361
experiment configuration fetcher daemon.
362
362
``timeout`` (optional)
363
363
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) .
365
365
``backoff`` (optional)
366
366
The base amount of time for exponential backoff when trying to find the
367
367
experiments config file. Defaults to no backoff between tries.
Original file line number Diff line number Diff line change 22
22
"reddit-decider~=1.2.31" ,
23
23
"typing_extensions>=3.10.0.0,<5.0" ,
24
24
],
25
- package_data = {"reddit_experiments" : ["py.typed" ]},
25
+ package_data = {
26
+ "reddit_experiments" : ["py.typed" ],
27
+ "reddit_decider" : ["py.typed" ]
28
+ },
26
29
zip_safe = True ,
27
30
classifiers = [
28
31
"Development Status :: 5 - Production/Stable" ,
You can’t perform that action at this time.
0 commit comments