Is there a way to set the .toml file up so you will have the dependencies installed in a certain order with Poetry?
Imagine I have the following .toml:
[tool.poetry.dependencies]
wxPython = "4.1.1"
python = "^3.9"
pandas = "^1.4.2"
Faker = "^13.13.0"
pymarc = "^4.2.0"
How can I make sure wxPython always is installed first?