Skip to content

Commit 4915ed8

Browse files
committed
Check Py3.8 compatibility
1 parent 181ad8f commit 4915ed8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os: [ubuntu-latest, windows-latest, macos-latest]
36-
py-version: ["3.9", "3.11", "3.12"]
36+
py-version: ["3.8", "3.9", "3.11", "3.12"]
3737

3838
steps:
3939
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4

ecoinvent_interface/process_interface.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from enum import Enum
66
from functools import lru_cache
77
from pathlib import Path
8-
from typing import Optional, Union, Tuple
8+
from typing import Optional, Tuple, Union
99
from urllib.parse import parse_qsl, urlparse
1010

1111
import requests

ecoinvent_interface/storage.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import hashlib
22
import json
33
import shutil
4+
from collections.abc import MutableMapping
45
from pathlib import Path
5-
from typing import Union, Iterable, MutableMapping
6+
from typing import Iterable, Union
67

78
import platformdirs
89

0 commit comments

Comments
 (0)