Skip to content

Commit

Permalink
Update changes; add 3.8 to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Nov 27, 2019
1 parent a575de7 commit 9281be9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install --upgrade pip wheel
- pip install Cython
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

v1.1.24 (2019.11.27)

* Fix #87 - Python 3.8 compatibility, time.clock removed

v1.1.23 (2019.11.22)

* Set minimum Python version to 3.4.5
Expand Down
2 changes: 1 addition & 1 deletion atropos/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def __sub__(self, other, minval=0.01):
"""
return dict(
wallclock=max(minval, self.timestamp() - other.timestamp()),
cpu=max(minval, self.process_time - other.clock))
cpu=max(minval, self.process_time - other.process_time))

class Timing(Summarizable):
"""Context manager that maintains timing information using
Expand Down

0 comments on commit 9281be9

Please sign in to comment.