Merge pull request #60 from daira/fix-import-from-distutils

Fix an import from distutils that is problematic on recent Python versions
This commit is contained in:
Kris Nuttycombe 2024-09-03 14:31:46 -06:00 committed by GitHub
commit af1a9af4e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ documentation = "https://github.com/zcash/developers/"
classifiers = [
"Private :: Do Not Upload",
]
package-mode = false
[tool.poetry.dependencies]
python = "^3.8"
@ -20,3 +21,4 @@ drest = "0.9.12"
networkx = "3.1"
pygraphviz = "1.11"
sgqlc = "16.3"
str2bool = "1.1"

View File

@ -7,7 +7,7 @@
import drest
import networkx as nx
from distutils.util import strtobool
from str2bool import str2bool as strtobool
import mimetypes
import os
from textwrap import wrap