-
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
11 changed files
with
109 additions
and
0 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: [email protected] | ||
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: [email protected] | ||
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?$' |
8 changes: 8 additions & 0 deletions
8
...ixtures/project_with_setup_calls_script/project_with_setup_calls_script.egg-info/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,8 @@ | ||
Metadata-Version: 2.1 | ||
Name: project-with-setup-calls-script | ||
Version: 0.1.2 | ||
Summary: Demo project. | ||
Home-page: https://github.com/demo/demo | ||
Author: Sébastien Eustace | ||
Author-email: [email protected] | ||
License: MIT |
8 changes: 8 additions & 0 deletions
8
...ures/project_with_setup_calls_script/project_with_setup_calls_script.egg-info/SOURCES.txt
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,8 @@ | ||
pyproject.toml | ||
setup.py | ||
my_package/__init__.py | ||
project_with_setup_calls_script.egg-info/PKG-INFO | ||
project_with_setup_calls_script.egg-info/SOURCES.txt | ||
project_with_setup_calls_script.egg-info/dependency_links.txt | ||
project_with_setup_calls_script.egg-info/requires.txt | ||
project_with_setup_calls_script.egg-info/top_level.txt |
1 change: 1 addition & 0 deletions
1
...ect_with_setup_calls_script/project_with_setup_calls_script.egg-info/dependency_links.txt
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 @@ | ||
|
2 changes: 2 additions & 0 deletions
2
...res/project_with_setup_calls_script/project_with_setup_calls_script.egg-info/requires.txt
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,2 @@ | ||
pendulum>=1.4.4 | ||
cachy[msgpack]>=0.2.0 |
1 change: 1 addition & 0 deletions
1
...es/project_with_setup_calls_script/project_with_setup_calls_script.egg-info/top_level.txt
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 @@ | ||
my_package |
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