From 5c0322dc559bf961f7e111d97cd3ed9ab5c1a73b Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Tue, 14 Mar 2017 11:46:32 -0400 Subject: [PATCH] 1.3 (add support for AIX) --- README.md | 12 ++++++------ setup.py | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index db4840d..20de9ca 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ On Python 3.3 or newer, ``monotonic`` will be an alias of [``time.monotonic``][0] from the standard library. On older versions, it will fall back to an equivalent implementation: - OS | Implementation --------------|----------------------------------------- - Linux, *BSD | [clock_gettime][1] - Windows | [GetTickCount][2] or [GetTickCount64][3] - OS X | [mach_absolute_time][3] + OS | Implementation +-----------------|----------------------------------------- + Linux, BSD, AIX | [clock_gettime][1] + Windows | [GetTickCount][2] or [GetTickCount64][3] + OS X | [mach_absolute_time][3] If no suitable implementation exists for the current platform, attempting to import this module (or to import from it) will @@ -23,7 +23,7 @@ monotonic is available via the Python Cheese Shop (PyPI): License ------- -Copyright 2014, 2015, 2016 Ori Livneh +Copyright 2014, 2015, 2016, 2017 Ori Livneh Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index 96c1ce7..cb2df15 100644 --- a/setup.py +++ b/setup.py @@ -10,13 +10,13 @@ On Python 3.3 or newer, ``monotonic`` will be an alias of ``time.monotonic`` from the standard library. On older versions, it will fall back to an equivalent implementation: -+-------------+----------------------------------------+ -| Linux, BSD | ``clock_gettime(3)`` | -+-------------+----------------------------------------+ -| Windows | ``GetTickCount`` or ``GetTickCount64`` | -+-------------+----------------------------------------+ -| OS X | ``mach_absolute_time`` | -+-------------+----------------------------------------+ ++------------------+----------------------------------------+ +| Linux, BSD, AIX | ``clock_gettime(3)`` | ++------------------+----------------------------------------+ +| Windows | ``GetTickCount`` or ``GetTickCount64`` | ++------------------+----------------------------------------+ +| OS X | ``mach_absolute_time`` | ++------------------+----------------------------------------+ If no suitable implementation exists for the current platform, attempting to import this module (or to import from it) will @@ -31,7 +31,7 @@ except ImportError: setup( name='monotonic', - version='1.2', + version='1.3', license='Apache', author='Ori Livneh', author_email='ori@wikimedia.org',