core-data-structures 1.0.0__tar.gz → 1.0.1__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.
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/PKG-INFO +2 -2
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/PKG-INFO +2 -2
- core-data-structures-1.0.1/core_data_structures.egg-info/requires.txt +3 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/pyproject.toml +2 -2
- core-data-structures-1.0.0/core_data_structures.egg-info/requires.txt +0 -3
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/LICENSE +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/README.md +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/SOURCES.txt +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/dependency_links.txt +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/top_level.txt +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/__init__.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/graphs/__init__.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/graphs/graphs.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/graphs/vertex.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/trees/__init__.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/trees/binary_tree.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/trees/simple_tree.py +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/setup.cfg +0 -0
- {core-data-structures-1.0.0 → core-data-structures-1.0.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: core-data-structures
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: This project/library contains commons data structures...
|
|
5
5
|
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
|
|
6
6
|
Maintainer: Alejandro Cora González
|
|
@@ -16,7 +16,7 @@ Classifier: Topic :: Utilities
|
|
|
16
16
|
Requires-Python: >=3.9
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: core-tests
|
|
19
|
+
Requires-Dist: core-tests==1.0.3
|
|
20
20
|
Provides-Extra: test
|
|
21
21
|
|
|
22
22
|
# core-data-structures
|
{core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: core-data-structures
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: This project/library contains commons data structures...
|
|
5
5
|
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
|
|
6
6
|
Maintainer: Alejandro Cora González
|
|
@@ -16,7 +16,7 @@ Classifier: Topic :: Utilities
|
|
|
16
16
|
Requires-Python: >=3.9
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: core-tests
|
|
19
|
+
Requires-Dist: core-tests==1.0.3
|
|
20
20
|
Provides-Extra: test
|
|
21
21
|
|
|
22
22
|
# core-data-structures
|
|
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
|
|
|
9
9
|
[project]
|
|
10
10
|
name = "core-data-structures"
|
|
11
11
|
description = "This project/library contains commons data structures..."
|
|
12
|
-
version = "1.0.
|
|
12
|
+
version = "1.0.1"
|
|
13
13
|
|
|
14
14
|
authors = [
|
|
15
15
|
{name = "Alejandro Cora González", email = "alek.cora.glez@gmail.com"}
|
|
@@ -35,7 +35,7 @@ classifiers = [
|
|
|
35
35
|
]
|
|
36
36
|
|
|
37
37
|
dependencies = [
|
|
38
|
-
"core-tests"
|
|
38
|
+
"core-tests==1.0.3"
|
|
39
39
|
]
|
|
40
40
|
|
|
41
41
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core-data-structures-1.0.1}/core_data_structures.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/graphs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/trees/binary_tree.py
RENAMED
|
File without changes
|
{core-data-structures-1.0.0 → core-data-structures-1.0.1}/data_structures/trees/simple_tree.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|