Including both piwheels and pypi in Pipfile caused hash mismatches, which caused installation to fail. I've removed pypi, but this may break installation on other platforms. I may need to duplicate Pipfile and Pipfile.lock, one for Pi and one for non-Pi platforms. I can confim this commit installed successfully on a Pi.
13 lines
292 B
TOML
13 lines
292 B
TOML
[[source]]
|
|
url = "https://www.piwheels.org/simple"
|
|
verify_ssl = true
|
|
name = "piwheels"
|
|
|
|
[requires]
|
|
python_version = '3.7'
|
|
|
|
[packages]
|
|
openflexure-microscope-server = {editable = true, path = "."}
|
|
|
|
[dev-packages]
|
|
openflexure-microscope-server = {editable = true, path = ".", extras = ["dev"]}
|