mirror of
https://github.com/httpie/cli.git
synced 2024-11-24 08:22:22 +02:00
Python 3 fixes.
This commit is contained in:
parent
3dbb61a8ca
commit
ab23037582
@ -4,9 +4,8 @@ python:
|
||||
- 2.7
|
||||
- 3.1
|
||||
- 3.2
|
||||
- 3.3
|
||||
script: python tests/tests.py
|
||||
install:
|
||||
- pip install requests pygments
|
||||
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse; fi"
|
||||
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $TRAVIS_PYTHON_VERSION == '3.1' ]]; then echo pip install argparse; fi"
|
||||
|
||||
|
@ -8,7 +8,7 @@ HTTPie does so by providing an ``http`` command that allows for issuing arbitrar
|
||||
.. image:: https://github.com/jkbr/httpie/raw/master/httpie.png
|
||||
:alt: HTTPie compared to cURL
|
||||
|
||||
Under the hood, HTTPie uses the excellent `Requests <http://python-requests.org>`_ and `Pygments <http://pygments.org/>`_ Python libraries. Python >= 2.6 is supported (including Python 3.x).
|
||||
Under the hood, HTTPie uses the excellent `Requests <http://python-requests.org>`_ and `Pygments <http://pygments.org/>`_ Python libraries. Python 2.6+ is supported (including 3.x).
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
1
setup.py
1
setup.py
@ -39,7 +39,6 @@ setup(
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.1'
|
||||
'Programming Language :: Python :: 3.2'
|
||||
'Programming Language :: Python :: 3.3'
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: System Administrators',
|
||||
|
Loading…
Reference in New Issue
Block a user