support python 3.8

This commit is contained in:
bobo.yang 2024-01-18 08:32:48 +08:00
parent 60533d7cd5
commit 51546b4fdb
2 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ABSOLUTE_PATH2="$DIR/site-packages/openai/_types.py"
# ABSOLUTE_PATH2="$DIR/site-packages/openai/_types.py"
NETWORKX_ATLAS="$DIR/site-packages/networkx/generators/atlas.py"
sed -i '' 's|FileContent = Union\[IO\[bytes\], bytes, PathLike\[str\]\]|FileContent = Union\[IO\[bytes\], bytes, PathLike\]|' "$ABSOLUTE_PATH2"
# sed -i '' 's|FileContent = Union\[IO\[bytes\], bytes, PathLike\[str\]\]|FileContent = Union\[IO\[bytes\], bytes, PathLike\]|' "$ABSOLUTE_PATH2"
sed -i '' 's|importlib\.resources|importlib_resources|' "$NETWORKX_ATLAS"

View File

@ -2,7 +2,7 @@
Generators for the small graph atlas.
"""
import gzip
import importlib.resources
import importlib_resources
import os
import os.path
from itertools import islice
@ -51,7 +51,7 @@ NUM_GRAPHS = 1253
#:
# Path to the atlas file
ATLAS_FILE = importlib.resources.files("networkx.generators") / "atlas.dat.gz"
ATLAS_FILE = importlib_resources.files("networkx.generators") / "atlas.dat.gz"
def _generate_graphs():