diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2019-06-19 17:46:09 +0800 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2019-06-19 17:46:09 +0800 |
| commit | bf8420af0851c6256a9fca322b07864c93a8f8b9 (patch) | |
| tree | 4d75d9f74c8b9680b2088cb269d88fe818a92a4e | |
| parent | adc28e4bd6534641f2c85ccc42529e6f25e97867 (diff) | |
| download | psutil-bf8420af0851c6256a9fca322b07864c93a8f8b9.tar.gz | |
version bump + fix typo
| -rw-r--r-- | psutil/__init__.py | 2 | ||||
| -rwxr-xr-x | psutil/tests/test_bsd.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/psutil/__init__.py b/psutil/__init__.py index b400ec85..118fd9fd 100644 --- a/psutil/__init__.py +++ b/psutil/__init__.py @@ -221,7 +221,7 @@ __all__ = [ __all__.extend(_psplatform.__extra__all__) __author__ = "Giampaolo Rodola'" -__version__ = "5.6.3" +__version__ = "5.6.4" version_info = tuple([int(num) for num in __version__.split('.')]) _timer = getattr(time, 'monotonic', time.time) diff --git a/psutil/tests/test_bsd.py b/psutil/tests/test_bsd.py index f994bc5d..7cba4b78 100755 --- a/psutil/tests/test_bsd.py +++ b/psutil/tests/test_bsd.py @@ -7,7 +7,7 @@ # TODO: (FreeBSD) add test for comparing connections with 'sockstat' cmd. -"""Tests sprcific to all BSD platforms.""" +"""Tests specific to all BSD platforms.""" import datetime |
