Skip to content
New issue

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

pypi_formula_mappings: extra_packages for python@X #153077

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions pypi_formula_mappings.json
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,24 @@
"pyspelling": {
"exclude_packages": ["lxml", "markdown", "PyYAML", "six"]
},
"python@3.7": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
"python@3.8": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
"python@3.9": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
"python@3.10": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
"python@3.11": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
"python@3.12": {
"extra_packages": ["setuptools", "pip", "wheel"]
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you also need flit-core

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can also leave out 3.7 since it's end of life and disabled.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you also need flit-core

I saw that in some of the versions but not others; do you know where it came from? AFAICT Python itself doesn't use flit-core anywhere in its build.

Copy link
Member

@chenrui333 chenrui333 Nov 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chenrui333 marked this conversation as resolved.
Show resolved Hide resolved
"python-build": {
"exclude_packages": ["packaging", "pyproject-hooks"]
},
Expand Down
Loading