brightway-lca / brightway2-io

Importing and exporting for the Brightway LCA framework
BSD 3-Clause "New" or "Revised" License
26 stars 40 forks source link

bw2io with python 3.9 #198

Closed mfastudillo closed 1 year ago

mfastudillo commented 1 year ago

bw2io.remote.install_project has __recursive: bool | None = False as an argument. This forces users to have python 3.10, which I find unnecessary. It is not rare that we are forced to use older versions of python. __recursive: Union[bool,None] = False I think does exactly the same.

mfastudillo commented 1 year ago

fixed here https://github.com/brightway-lca/brightway2-io/pull/199