-
Notifications
You must be signed in to change notification settings - Fork 151
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
Switched build backend to flit #436
Closed
Closed
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
57b28c9
Switched build backend to flit
agronholm 899e8b6
Fixed flit_scm installation
agronholm 4cbcd02
Fixed FreeBSD test suite
agronholm 9150352
Switched build backend to flit_core
agronholm 4f6ba78
Removed configuration required previously by flit-scm
agronholm 23e47ba
Merge branch 'main' into flit-backend
agronholm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
[build-system] | ||
requires = ["flit_scm"] | ||
build-backend = "flit_scm:buildapi" | ||
|
||
[project] | ||
name = "wheel" | ||
description = "A built-package format for Python" | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: System :: Archiving :: Packaging", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10" | ||
] | ||
authors = [{name = "Daniel Holth", email = "[email protected]"}] | ||
maintainers = [{name = "Alex Grönholm", email = "[email protected]"}] | ||
keywords = ["wheel", "packaging"] | ||
license = {file = "LICENSE.txt"} | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"setuptools >= 45.2.0" | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Documentation = "https://wheel.readthedocs.io/" | ||
Changelog = "https://wheel.readthedocs.io/en/stable/news.html" | ||
"Issue Tracker" = "https://github.com/pypa/wheel/issues" | ||
|
||
[project.scripts] | ||
wheel = "wheel.cli:main" | ||
|
||
[project.entry-points."distutils.commands"] | ||
bdist_wheel = "wheel.bdist_wheel:bdist_wheel" | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest >= 3.0.0" | ||
] | ||
|
||
[tool.flit.sdist] | ||
include = ["src/wheel/_version.py"] | ||
agronholm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
exclude = [ | ||
".cirrus.yml", | ||
".github/*", | ||
".gitignore", | ||
".pre-commit-config.yaml", | ||
".readthedocs.yml" | ||
] | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/wheel/_version.py" | ||
agronholm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[tool.black] | ||
target-version = ['py37'] | ||
extend-exclude = ''' | ||
^/src/wheel/vendored/ | ||
''' | ||
|
||
[tool.isort] | ||
src_paths = ["src"] | ||
profile = "black" | ||
skip_gitignore = true | ||
|
||
[tool.flake8] | ||
agronholm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
max-line-length = 88 | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = "tests" | ||
|
||
[tool.coverage.run] | ||
source = ["wheel"] | ||
omit = ["*/vendored/*"] | ||
|
||
[tool.coverage.report] | ||
show_missing = true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from __future__ import annotations | ||
|
||
__version__ = "0.37.1" | ||
from ._version import version as __version__ # noqa: F401 |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, Anthony and co. actively fight others adding pyproject.toml support as well, see csachs/pyproject-flake8#13. Currently broken with Flake8 5 though might be fixable for now.