From 701905cc07f85316466998c7f4060cd7f5d4dbba Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 24 Jul 2018 21:46:48 +0200 Subject: [PATCH] Remove use of and mentions of the attr library Commit a799657 removed its use, so let's drop the mention and the linking against it. --- README.rst | 5 ++--- setup.py | 2 -- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 2844a61..d7c1000 100644 --- a/README.rst +++ b/README.rst @@ -17,9 +17,8 @@ pyxattr has been written and tested on Linux, kernel v2.4 or later, with XFS filesystems; ext2/ext3 should work also. If any other platform implements the same behavior, pyxattr could be used. -You need to have the attr library (including development headers; most -distributions should have this, under various names) and setuptools -installed in order to build and install the module. +You need to have the setuptools tool installed in order to build and +install the module. License ------- diff --git a/setup.py b/setup.py index 54259db..85e6924 100755 --- a/setup.py +++ b/setup.py @@ -14,8 +14,6 @@ version = "0.6.0" author = "Iustin Pop" author_email = "iustin@k1024.org" libraries = [] -if platform.system() == 'Linux': - libraries.append("attr") macros = [ ("_XATTR_VERSION", '"%s"' % version), ("_XATTR_AUTHOR", '"%s"' % author), -- 2.39.5