Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/acme
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2017-05-02 00:49:12 +0300
committerPeter Eckersley <pde@users.noreply.github.com>2017-05-02 00:49:12 +0300
commit5ca8f7c5b943132b73b0becfeacb660361000172 (patch)
treefd9ee640fd2cbe91a8ea5887e2923265e18b1e6f /acme
parent4ca702f6fbd5936f1b1e4ee794ebca09d5acd6fb (diff)
Add lockfile (#4449)
* add lock_file * cleanup lock file * Add LockFile tests * add lock_dir * add lock_dir_until_exit * add set_up_core_dir and move lock_dir_until_exit * Move lock_and_call to certbot.test.util * Add lock to Apache * Add lock to the Nginx plugin * Improve permissions error message * sort plugins * add test_prepare_order * provide more actionable permissions error * Document and catch use of OSError * don't lock a directory twice * add conditional dependency on ordereddict * Add lock_test * expand sorted plugins comment * Add lock_test to lint * make make_lineage more conventional and flexible * enhance lock_test.py * add lock_test to tox * Readd success message * make py26 happy * add test_acquire_without_deletion
Diffstat (limited to 'acme')
-rw-r--r--acme/setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/acme/setup.py b/acme/setup.py
index cb12df51f..8d8d1a049 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -29,7 +29,10 @@ install_requires = [
# env markers cause problems with older pip and setuptools
if sys.version_info < (2, 7):
- install_requires.append('argparse')
+ install_requires.extend([
+ 'argparse',
+ 'ordereddict',
+ ])
dev_extras = [
'nose',