Merge pull request #61 from microsoft/dev

0.1.8
This commit is contained in:
Nick 2020-12-18 14:30:23 -08:00 коммит произвёл GitHub
Родитель 5563de9a96 a458126832
Коммит ff0dab0163
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -1,4 +1,6 @@
# Release Notes
## 0.1.8
- Fix an issue with sorting non integer node ids when calculating omnibus embeddings
## 0.1.7
- Use the union graph largest connected component strategy to calculate the omnibus embedding
## 0.1.6

Просмотреть файл

@ -231,7 +231,7 @@ def _get_adjacency_matrices(graphs):
for node in sorted_nodes:
labels.add(node)
return list(labels), matrices
return sorted(list(labels)), matrices
def _get_laplacian_matrices(graphs):

Просмотреть файл

@ -10,7 +10,7 @@ __all__: List[str] = ["version", "name"]
name = "topologic"
# manually updated
__semver = "0.1.7"
__semver = "0.1.8"
# full version (may be same as __semver on release)
__version_file = "version.txt"