We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In bw2io/importers/ecoinvent_lcia.py, lines 18-24.
class EcoinventLCIAImporter(LCIAImporter): def __init__(self, biosphere_database: str | None = None):
The | None = None format isn't compatible with Python versions <3.10, and brightway is supposed to be compatible with python versions >= 3.8.
| None = None
Is there a way to fix this, perhaps just by taking it out?
The text was updated successfully, but these errors were encountered:
Hi, I have the same problem. I tried with python 3.9.13 and with python 3.12.3. Any ideas for fixes, yet?
Are you using brightway2 or brightway25?
Sorry, something went wrong.
according to the changelog this is already solved in version 0.9.DEV29
https://github.com/brightway-lca/brightway2-io/blob/main/CHANGES.md
0d583be
No branches or pull requests
In bw2io/importers/ecoinvent_lcia.py, lines 18-24.
The
| None = None
format isn't compatible with Python versions <3.10, and brightway is supposed to be compatible with python versions >= 3.8.Is there a way to fix this, perhaps just by taking it out?
The text was updated successfully, but these errors were encountered: