commit 258ddfc4ef1e73ff1fdd7c44edf88587f185c0b2 Author: Damian Johnson atagar@torproject.org Date: Mon Nov 6 12:23:54 2017 -0800
Install fails with "error: could not create '/usr/local/man'"
God damnit. How error prone can they make this? Installing with 'pip install -U nyx' works but lacking the '-U' flag causes us to fail to add the man page.
Fine. Screw it. We weren't instructing pip to create that but I give up - package managers can handle the man installation. --- nyx/__init__.py | 2 +- setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/nyx/__init__.py b/nyx/__init__.py index d500970..be6a1d6 100644 --- a/nyx/__init__.py +++ b/nyx/__init__.py @@ -89,7 +89,7 @@ except ImportError:
sys.exit(1)
-__version__ = '2.0.3' +__version__ = '2.0.4' __release_date__ = 'November 5, 2017' __author__ = 'Damian Johnson' __contact__ = 'atagar@torproject.org' diff --git a/setup.py b/setup.py index 5659053..41155e4 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,6 @@ try: keywords = 'tor onion controller', install_requires = ['stem>=1.6.0'], package_data = {'nyx': ['settings/*']}, - data_files = [('man/man1', ['nyx.1'])], entry_points = {'console_scripts': ['nyx = nyx.__init__:main']}, classifiers = [ 'Development Status :: 5 - Production/Stable',
tor-commits@lists.torproject.org