When I am using a poetry command with Python 3.7, in my case:
poetry export -f requirements.txt
I am getting the following error:
Warning: The lock file is not up to date with the latest changes in pyproject.toml. You may be getting outdated dependencies. Run update to update them.
So far clear, but if I run poetry update it upgrades my dependencies, which is not what I want at this time for my project. If I run poetry lock instead, it still upgrades dependencies.
How can I work around this?