Skip to content
Open
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"

install:
- python setup.py --quiet install
Expand Down
12 changes: 8 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ this code

.. code-block:: python

x = "abc"
y = 'hello'
a = "abc"
b = 'hello'
c = 'this \' is quote'
d = 'this " is another quote'

gets formatted into this

.. code-block:: python

x = 'abc'
y = 'hello'
a = 'abc'
b = 'hello'
c= "this ' is quote"
d = 'this " is another quote'
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def version():
url='https://github.com/myint/unify',
classifiers=['Intended Audience :: Developers',
'Environment :: Console',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'],
Expand Down
Loading