-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trust empty requires dist with modern metadata
- Loading branch information
Showing
6 changed files
with
120 additions
and
9 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
11 changes: 11 additions & 0 deletions
11
tests/fixtures/inspection/demo_no_setup_pkg_info_no_deps_dynamic/PKG-INFO
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,11 @@ | ||
Metadata-Version: 2.2 | ||
Name: demo | ||
Version: 0.1.0 | ||
Summary: Demo project. | ||
Home-page: https://github.com/demo/demo | ||
Author: Sébastien Eustace | ||
Author-email: sebastien@eustace.io | ||
License: MIT | ||
Description: UNKNOWN | ||
Platform: UNKNOWN | ||
Dynamic: Requires-Dist |
19 changes: 19 additions & 0 deletions
19
tests/fixtures/inspection/demo_no_setup_pkg_info_no_deps_dynamic/pyproject.toml
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,19 @@ | ||
# this was copied over and modified from orjson project's pyproject.toml | ||
# https://github.com/ijl/orjson/blob/master/pyproject.toml | ||
[project] | ||
name = "demo" | ||
repository = "https://github.com/demo/demo" | ||
|
||
[build-system] | ||
build-backend = "maturin" | ||
requires = ["maturin>=0.8.1,<0.9"] | ||
|
||
[tool.maturin] | ||
manylinux = "off" | ||
sdist-include = ["Cargo.lock", "json/**/*"] | ||
strip = "on" | ||
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py36', 'py37', 'py38'] | ||
include = '\.pyi?$' |
10 changes: 10 additions & 0 deletions
10
tests/fixtures/inspection/demo_no_setup_pkg_info_no_deps_for_sure/PKG-INFO
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,10 @@ | ||
Metadata-Version: 2.2 | ||
Name: demo | ||
Version: 0.1.0 | ||
Summary: Demo project. | ||
Home-page: https://github.com/demo/demo | ||
Author: Sébastien Eustace | ||
Author-email: sebastien@eustace.io | ||
License: MIT | ||
Description: UNKNOWN | ||
Platform: UNKNOWN |
19 changes: 19 additions & 0 deletions
19
tests/fixtures/inspection/demo_no_setup_pkg_info_no_deps_for_sure/pyproject.toml
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,19 @@ | ||
# this was copied over and modified from orjson project's pyproject.toml | ||
# https://github.com/ijl/orjson/blob/master/pyproject.toml | ||
[project] | ||
name = "demo" | ||
repository = "https://github.com/demo/demo" | ||
|
||
[build-system] | ||
build-backend = "maturin" | ||
requires = ["maturin>=0.8.1,<0.9"] | ||
|
||
[tool.maturin] | ||
manylinux = "off" | ||
sdist-include = ["Cargo.lock", "json/**/*"] | ||
strip = "on" | ||
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py36', 'py37', 'py38'] | ||
include = '\.pyi?$' |
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