Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1314388 Details for
Bug 1450637
new mycli needs python-cli-helpers
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh92 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
req backports.csv only for python 2
file_1450637.txt (text/plain), 670 bytes, created by
Terje Røsten
on 2017-08-16 20:49:02 UTC
(
hide
)
Description:
req backports.csv only for python 2
Filename:
MIME Type:
Creator:
Terje Røsten
Created:
2017-08-16 20:49:02 UTC
Size:
670 bytes
patch
obsolete
>--- a/setup.py >+++ b/setup.py >@@ -4,6 +4,7 @@ > import ast > from io import open > import re >+import sys > > from setuptools import find_packages, setup > >@@ -22,6 +23,11 @@ def open_file(filename): > > readme = open_file('README.rst') > >+if sys.version_info[0] == 2: >+ py2_reqs = [ 'backports.csv >= 1.0.0', ] >+else: >+ py2_reqs = [] >+ > setup( > name='cli_helpers', > author='dbcli', >@@ -34,8 +40,7 @@ setup( > long_description=readme, > install_requires=[ > 'terminaltables >= 3.0.0', >- 'backports.csv >= 1.0.0' >- ], >+ ] + py2_reqs, > extras_require={ > 'styles': ['Pygments >= 1.6'], > },
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1450637
: 1314388