Skip to content

Commit 5c014ea

Browse files
committedFeb 16, 2017
Use upstream urwid and remove italics
1 parent 556c041 commit 5c014ea

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed
 

‎Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ test:
1111
pytest
1212

1313
install:
14-
pip install -I -r requirements.txt
15-
/usr/bin/env python2 setup.py bdist_wheel
16-
pip install dist/mongoaudit-*.whl
14+
/usr/bin/env python2 setup.py install
1715

1816
clean:
1917
find . -name \*.pyc -delete

‎mongoaudit/palette.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
('button', '', '', '', '#d00', '#fff'),
1313
('copy', '', '', '', 'g70', 'g93'),
1414
('text bold', '', '', '', '#333,bold', '#fff'),
15-
('text italic', 'dark gray', 'white', '', '#333,italics', '#fff'),
15+
('text italic', 'dark gray', 'white', '', '#777', '#fff'),
1616
('image button', '', '', '', 'g70', '#fff'),
1717
('image button focus', '', '', '', '#f00', '#fff'),
1818
('input', '', '', '', 'g70', '#fff'),

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pymongo==3.3.1
22
pytest==3.0.6
3-
git+https://github.com/urwid/urwid.git
3+
urwid==1.3.1

‎setup.py

-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
'pymongo>=3.3.1',
3030
'urwid>=1.3.1'
3131
],
32-
dependency_links=[
33-
'git+https://github.com/urwid/urwid.git#egg=urwid-1.3.1'
34-
],
3532
classifiers=[
3633
'Development Status :: 4 - Beta',
3734
'Environment :: Console',

0 commit comments

Comments
 (0)
Please sign in to comment.