mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
Merge pull request #517 from kuba/functools32
Fix for functools32 that works with Python 2.6
This commit is contained in:
commit
b61e57c5fc
3 changed files with 5 additions and 5 deletions
|
|
@ -12,6 +12,7 @@ after_success: '[ "$TOXENV" == "cover" ] && coveralls'
|
|||
# matrix, which allows us to clearly distinguish which component under
|
||||
# test has failed
|
||||
env:
|
||||
- TOXENV=py26
|
||||
- TOXENV=py27
|
||||
- TOXENV=lint
|
||||
- TOXENV=cover
|
||||
|
|
|
|||
|
|
@ -35,8 +35,8 @@ In general:
|
|||
.. _new-swig:
|
||||
.. note:: If your operating system uses SWIG 3.0.5+, you will need
|
||||
to run ``pip install -r requirements-swig-3.0.5.txt -r
|
||||
requirements.txt`` instead of the standard ``pip
|
||||
install -r requirements.txt``.
|
||||
requirements.txt .`` instead of the standard ``pip
|
||||
install -r requirements.txt .``.
|
||||
|
||||
* `Augeas`_ is required for the Python bindings
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ backslash):
|
|||
.. code-block:: shell
|
||||
|
||||
SWIG_FEATURES="-includeall -D__`uname -m`__-I/usr/include/openssl" \
|
||||
./venv/bin/pip install -r requirements.txt functools32
|
||||
./venv/bin/pip install -r requirements.txt .
|
||||
|
||||
|
||||
Installation
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -32,7 +32,7 @@ install_requires = [
|
|||
'argparse',
|
||||
'ConfigArgParse',
|
||||
'configobj',
|
||||
'jsonschema',
|
||||
'jsonschema<2.5.1', # https://github.com/Julian/jsonschema/issues/233
|
||||
'mock',
|
||||
'ndg-httpsclient', # urllib3 InsecurePlatformWarning (#304)
|
||||
'parsedatetime',
|
||||
|
|
@ -53,7 +53,6 @@ install_requires = [
|
|||
# order of items in install_requires DOES matter and M2Crypto has
|
||||
# to go last, see #152
|
||||
'M2Crypto',
|
||||
'functools32'
|
||||
]
|
||||
|
||||
dev_extras = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue