-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setup fails on Ubuntu 18.04 #152
Comments
Hi,
I've looked into the code and as far as i can see, there should be no syntax errors. This is what i did so far:
-> testing by starting the programm (no error)
-> go through all code and test usage scenarios manually
The Enum usage in FAUCardPayment is mostly hardcoded, all asserts check for isinstance(int, Status/Info). SQLite storage is in int, but there is no loading from SQLite -> no int to Enum casting.
Could someone maybe just replace enum with enum34 and see if error still occurs?
€: Tried to setup vagrant for ubuntu/bionic64 but it keeps giving me 'The box ... could not be found'
|
Hey, |
The vagrant box definitely exists: https://app.vagrantup.com/ubuntu/boxes/bionic64 |
I do not doubt it exists, yet it failed to run with me having little knowledge on vagrant. As soon as I have Access and time to the hardware, I will test the branch. |
I found out that we've been using |
and switch to Debian 10 (Buster) as Vagrant OS and some minor improvements so that `vagrant up` just works nicely. Fixes #152
and switch to Debian 10 (Buster) as Vagrant OS and some minor improvements so that `vagrant up` just works nicely. Fixes #152
should be fixed |
and switch to Debian 10 (Buster) as Vagrant OS and some minor improvements so that `vagrant up` just works nicely. Fixes #152
and switch to Debian 10 (Buster) as Vagrant OS and some minor improvements so that `vagrant up` just works nicely. Fixes #152
Running the Vagrant setup with "ubuntu/bionic64" causes this error: pyca/cryptography#4020
Best guess: Recent versions of python-cryptography (used by
requests
) are incompatible with theenum
library, but wants the newerenum34
which has a slightly different interface. This is a problem because FAUCardPayment usesenum
.enum34
(and test it thoroughly!)The text was updated successfully, but these errors were encountered: