Skip to content

Commit

Permalink
Check Py3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed May 16, 2024
1 parent 181ad8f commit 4915ed8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
py-version: ["3.9", "3.11", "3.12"]
py-version: ["3.8", "3.9", "3.11", "3.12"]

steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
Expand Down
2 changes: 1 addition & 1 deletion ecoinvent_interface/process_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from enum import Enum
from functools import lru_cache
from pathlib import Path
from typing import Optional, Union, Tuple
from typing import Optional, Tuple, Union
from urllib.parse import parse_qsl, urlparse

import requests
Expand Down
3 changes: 2 additions & 1 deletion ecoinvent_interface/storage.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import hashlib
import json
import shutil
from collections.abc import MutableMapping
from pathlib import Path
from typing import Union, Iterable, MutableMapping
from typing import Iterable, Union

import platformdirs

Expand Down

0 comments on commit 4915ed8

Please sign in to comment.