pbs-installer 2024.3.23__tar.gz → 2024.3.26__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/PKG-INFO +1 -1
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/pyproject.toml +1 -1
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/src/pbs_installer/_install.py +2 -2
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/src/pbs_installer/_versions.py +0 -1
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/LICENSE +0 -0
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/README.md +0 -0
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/src/pbs_installer/__init__.py +0 -0
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/src/pbs_installer/__main__.py +0 -0
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/src/pbs_installer/_utils.py +0 -0
- {pbs_installer-2024.3.23 → pbs_installer-2024.3.26}/tests/__init__.py +0 -0
|
@@ -4,7 +4,7 @@ import hashlib
|
|
|
4
4
|
import logging
|
|
5
5
|
import os
|
|
6
6
|
import tempfile
|
|
7
|
-
from typing import TYPE_CHECKING, Tuple
|
|
7
|
+
from typing import TYPE_CHECKING, Optional, Tuple
|
|
8
8
|
from urllib.parse import unquote
|
|
9
9
|
|
|
10
10
|
from ._utils import PythonVersion, get_arch_platform
|
|
@@ -15,7 +15,7 @@ if TYPE_CHECKING:
|
|
|
15
15
|
|
|
16
16
|
logger = logging.getLogger(__name__)
|
|
17
17
|
THIS_ARCH, THIS_PLATFORM = get_arch_platform()
|
|
18
|
-
PythonFile = Tuple[str, str
|
|
18
|
+
PythonFile = Tuple[str, Optional[str]]
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
def _get_headers() -> dict[str, str] | None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|