forked from projen/projen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add ability to override default python version for Poetry projec…
…ts (projen#1028) * The Python version for poetry projects is currently hard-coded to ^3.6 * This hard-coded Python version has a knock-on effect to the versions of other packages that are retrieved by poetry. Some projects require different versions of Python. * Remove the auto-addition of the Python dependency in favour of specifying it explicitly in the 'deps' section of each project alongside other project dependencies e.g. `"python@^3.6,<3.9"`. This allows individual projects to specify the version(s) of python they use. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
- Loading branch information
Showing
4 changed files
with
45 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters