1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff -u -r a/setup.py b/setup.py
--- a/setup.py 2018-06-17 16:01:07.823286561 +0200
+++ b/setup.py 2018-06-17 16:01:56.616618373 +0200
@@ -7,19 +7,7 @@
readme = codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
install_requires = [
- # We don't use idna directly, but problems with PyPI's solver
- # have resulted in broken installations twice now, (when idna 2.6
- # was released, and again with 2.7) so as a workaround, we provide
- # an explicit upper bound here, before any of the other constraints
- # are read.
- #
- # See:
- #
- # * https://github.com/zenhack/simp_le/issues/62
- # * https://github.com/pypa/pip/issues/988
- 'idna<2.8',
-
- 'acme>=2.0,<3.0',
+ 'acme',
'cryptography',
# formerly known as acme.jose:
'josepy',
|