kernels 0.3.2__tar.gz → 0.3.3__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.
- {kernels-0.3.2 → kernels-0.3.3}/PKG-INFO +4 -4
- {kernels-0.3.2 → kernels-0.3.3}/pyproject.toml +4 -4
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels.egg-info/PKG-INFO +4 -4
- kernels-0.3.3/src/kernels.egg-info/requires.txt +8 -0
- kernels-0.3.2/src/kernels.egg-info/requires.txt +0 -8
- {kernels-0.3.2 → kernels-0.3.3}/README.md +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/setup.cfg +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/__init__.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/cli.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/compat.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/layer.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/lockfile.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels/utils.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels.egg-info/SOURCES.txt +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels.egg-info/dependency_links.txt +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels.egg-info/entry_points.txt +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/src/kernels.egg-info/top_level.txt +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/tests/test_basic.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/tests/test_benchmarks.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/tests/test_kernel_locking.py +0 -0
- {kernels-0.3.2 → kernels-0.3.3}/tests/test_layer.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kernels
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: Download compute kernels
|
|
5
5
|
Author-email: OlivierDehaene <olivier@huggingface.co>, Daniel de Kok <daniel@huggingface.co>, David Holtz <david@huggingface.co>, Nicolas Patry <nicolas@huggingface.co>
|
|
6
6
|
Requires-Python: >=3.9
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist:
|
|
9
|
-
Requires-Dist: packaging>=
|
|
10
|
-
Requires-Dist: tomli>=2.0
|
|
8
|
+
Requires-Dist: huggingface_hub<1.0,>=0.26.0
|
|
9
|
+
Requires-Dist: packaging>=20.0
|
|
10
|
+
Requires-Dist: tomli>=2.0; python_version < "3.11"
|
|
11
11
|
Provides-Extra: torch
|
|
12
12
|
Requires-Dist: torch; extra == "torch"
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "kernels"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.3"
|
|
4
4
|
description = "Download compute kernels"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "OlivierDehaene", email = "olivier@huggingface.co" },
|
|
@@ -11,9 +11,9 @@ authors = [
|
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
requires-python = ">= 3.9"
|
|
13
13
|
dependencies = [
|
|
14
|
-
"
|
|
15
|
-
"packaging>=
|
|
16
|
-
"tomli>=2.0
|
|
14
|
+
"huggingface_hub>=0.26.0,<1.0",
|
|
15
|
+
"packaging>=20.0",
|
|
16
|
+
"tomli>=2.0; python_version<'3.11'",
|
|
17
17
|
]
|
|
18
18
|
|
|
19
19
|
[build-system]
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kernels
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: Download compute kernels
|
|
5
5
|
Author-email: OlivierDehaene <olivier@huggingface.co>, Daniel de Kok <daniel@huggingface.co>, David Holtz <david@huggingface.co>, Nicolas Patry <nicolas@huggingface.co>
|
|
6
6
|
Requires-Python: >=3.9
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist:
|
|
9
|
-
Requires-Dist: packaging>=
|
|
10
|
-
Requires-Dist: tomli>=2.0
|
|
8
|
+
Requires-Dist: huggingface_hub<1.0,>=0.26.0
|
|
9
|
+
Requires-Dist: packaging>=20.0
|
|
10
|
+
Requires-Dist: tomli>=2.0; python_version < "3.11"
|
|
11
11
|
Provides-Extra: torch
|
|
12
12
|
Requires-Dist: torch; extra == "torch"
|
|
13
13
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|