Nikita Ostrenkov
Nikita Ostrenkov
Yep. I also have the same problem on typeorm 0.3.12 and windows 11. Overrides helps me too
I guess it's already resolved in PR #9768 3 weeks ago. But unfortunately, it's not included in 0.3.12
I checked `0.3.13-dev.58fc088` and it includes fix and works fine.
@dimbleby Thanks for your reply! No, I can't use extras or groups. Packages that I need to exclude have to be required by default when building whl of my project....
Apparently PR also could solve this issue https://github.com/python-poetry/poetry-plugin-export/issues/40 ``` poetry export -f requirements.txt --exclude black --exclude flake8 --output requirements.txt ```
@dimbleby I have two Python packages: packageA and packageB. packageB is declared as a required dependency for packageA. For local development of packageA, I use the latest version of packageB...