We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377c70d commit 3631e50Copy full SHA for 3631e50
src/shiv/__version__.py
@@ -1 +1 @@
1
-__version__ = "1.0.7"
+__version__ = "1.0.8"
src/shiv/bootstrap/environment.py
@@ -4,7 +4,7 @@
4
"""
5
import json
6
import os
7
-from typing import Any, Optional
+from typing import Any, Dict, Optional
8
9
10
def str_bool(v) -> bool:
@@ -35,7 +35,7 @@ def __init__(
35
entry_point: Optional[str] = None,
36
extend_pythonpath: bool = False,
37
prepend_pythonpath: Optional[str] = None,
38
- hashes: Optional[dict[str, Any]] = None,
+ hashes: Optional[Dict[str, Any]] = None,
39
no_modify: bool = False,
40
reproducible: bool = False,
41
script: Optional[str] = None,
@@ -46,7 +46,7 @@ def __init__(
46
self.always_write_cache: bool = always_write_cache
47
self.build_id: Optional[str] = build_id
48
self.built_at: str = built_at
49
- self.hashes: Optional[dict[str, Any]] = hashes or {}
+ self.hashes: Optional[Dict[str, Any]] = hashes or {}
50
self.no_modify: bool = no_modify
51
self.reproducible: bool = reproducible
52
self.preamble: Optional[str] = preamble
0 commit comments