compileiq 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
compileiq-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: compileiq
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for unsupported CompileIQ environments
|
|
5
|
+
Author: NVIDIA Corporation
|
|
6
|
+
Author-email: compileiq@nvidia.com
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Project-URL: Repository, https://github.com/NVIDIA/CompileIQ
|
|
9
|
+
Project-URL: Documentation, https://nvidia.github.io/CompileIQ/stable/
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# CompileIQ Placeholder Package
|
|
18
|
+
|
|
19
|
+
`compileiq 0.0.0` is a placeholder, not an actual CompileIQ release. It exists
|
|
20
|
+
so pip shows a clear error instead of installing the older `0.0.0a0` reservation
|
|
21
|
+
package when no published CompileIQ release is compatible with the current
|
|
22
|
+
environment.
|
|
23
|
+
|
|
24
|
+
See the PyPI package page for current package files and requirements:
|
|
25
|
+
https://pypi.org/project/compileiq/
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# CompileIQ Placeholder Package
|
|
2
|
+
|
|
3
|
+
`compileiq 0.0.0` is a placeholder, not an actual CompileIQ release. It exists
|
|
4
|
+
so pip shows a clear error instead of installing the older `0.0.0a0` reservation
|
|
5
|
+
package when no published CompileIQ release is compatible with the current
|
|
6
|
+
environment.
|
|
7
|
+
|
|
8
|
+
See the PyPI package page for current package files and requirements:
|
|
9
|
+
https://pypi.org/project/compileiq/
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
MESSAGE = """
|
|
7
|
+
ERROR: compileiq 0.0.0 is a placeholder, not an actual CompileIQ release.
|
|
8
|
+
|
|
9
|
+
pip selected this placeholder because no published CompileIQ release appears to
|
|
10
|
+
be compatible with the current Python version, operating system, or CPU
|
|
11
|
+
architecture.
|
|
12
|
+
|
|
13
|
+
Check the current package files and requirements, create a compatible
|
|
14
|
+
environment, and rerun:
|
|
15
|
+
python -m pip install compileiq
|
|
16
|
+
|
|
17
|
+
Package page: https://pypi.org/project/compileiq/
|
|
18
|
+
|
|
19
|
+
If you expected this environment to work, contact the CompileIQ team with this
|
|
20
|
+
pip output plus your Python version, OS, and architecture.
|
|
21
|
+
""".strip()
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def _fail() -> None:
|
|
25
|
+
print(MESSAGE, file=sys.stderr)
|
|
26
|
+
raise SystemExit(1)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_requires_for_build_wheel(config_settings=None): # noqa: D401
|
|
30
|
+
"""Abort before pip attempts to build this placeholder package."""
|
|
31
|
+
_fail()
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def prepare_metadata_for_build_wheel(metadata_directory, config_settings=None): # noqa: D401
|
|
35
|
+
"""Abort before pip treats this placeholder package as installable."""
|
|
36
|
+
_fail()
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def build_wheel(wheel_directory, config_settings=None, metadata_directory=None): # noqa: D401
|
|
40
|
+
"""Abort before pip builds this placeholder package."""
|
|
41
|
+
_fail()
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def build_sdist(sdist_directory, config_settings=None): # noqa: D401
|
|
45
|
+
"""Abort before tools rebuild this placeholder package from source."""
|
|
46
|
+
_fail()
|