set pyasn1 required version to prevent conflict with pyasn1-modules

pyasn1-modules v0.2.1 requires pyasn1 <0.5.0, >=0.4.1 but for whatever
reason, `pip3 install` is not picking it up properly.  Perhaps because pip3
finds an older version of pyasn1 installed but does not upgrade it.

* https://github.com/etingof/pyasn1-modules/issues/10
* https://gitlab.com/eighthave/fdroidserver/-/jobs/67781548
This commit is contained in:
Hans-Christoph Steiner 2018-05-14 09:38:37 +02:00
parent b3f45ca024
commit 5610b3f0d7

View file

@ -88,8 +88,8 @@ setup(name='fdroidserver',
'paramiko', 'paramiko',
'Pillow', 'Pillow',
'apache-libcloud >= 0.14.1', 'apache-libcloud >= 0.14.1',
'pyasn1', 'pyasn1 <0.5.0, >=0.4.1',
'pyasn1-modules', 'pyasn1-modules == 0.2.1',
'python-vagrant', 'python-vagrant',
'PyYAML', 'PyYAML',
'qrcode', 'qrcode',