Skip to content

Commit a5377c1

Browse files
author
Krum Motsov
committed
Update requirements.txt to provide stricter versions of needed deps.
Fix a doctest.
1 parent ba8e16a commit a5377c1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

requirements.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
nose2
1+
cov-core
2+
enum
3+
mock==2.0.0
4+
nose2
5+
six==1.10.0
6+
unittest2

stock_alerter/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ are going to be processed. A simple dictionary will do.
1010
>>> exchange = {"GOOG": Stock("GOOG"), "AAPL": Stock("AAPL")}
1111
>>> for key in sorted(exchange.keys()): #doctest: -NORMALIZE_WHITESPACE
1212
... print key, exchange[key]
13-
AAPL <stock_alerter.stock.Stock ... at 0x0...>
14-
GOOG <stock_alerter.stock.Stock ... at 0x0...>
13+
AAPL <stock_alerter.stock.Stock ... at 0x...>
14+
GOOG <stock_alerter.stock.Stock ... at 0x...>
1515

1616
Next, we configure the reader. The reader is the source from where the
1717
stock updates are coming. The module provides two readers out of the

0 commit comments

Comments
 (0)