dotlocalslashbin 0.0.24__tar.gz → 0.0.25__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.
- {dotlocalslashbin-0.0.24 → dotlocalslashbin-0.0.25}/PKG-INFO +1 -1
- {dotlocalslashbin-0.0.24 → dotlocalslashbin-0.0.25}/src/dotlocalslashbin.py +2 -2
- {dotlocalslashbin-0.0.24 → dotlocalslashbin-0.0.25}/LICENSES/MPL-2.0.txt +0 -0
- {dotlocalslashbin-0.0.24 → dotlocalslashbin-0.0.25}/README.md +0 -0
- {dotlocalslashbin-0.0.24 → dotlocalslashbin-0.0.25}/pyproject.toml +0 -0
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
# dependencies = []
|
|
8
8
|
# ///
|
|
9
9
|
"""Download and extract files to `~/.local/bin/`."""
|
|
10
|
+
|
|
10
11
|
import gzip
|
|
11
12
|
import tarfile
|
|
12
13
|
from argparse import ArgumentParser, BooleanOptionalAction, Namespace
|
|
@@ -23,8 +24,7 @@ from urllib.error import HTTPError
|
|
|
23
24
|
from urllib.request import urlopen
|
|
24
25
|
from zipfile import ZipFile
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
__version__ = "0.0.24"
|
|
27
|
+
__version__ = "0.0.25"
|
|
28
28
|
|
|
29
29
|
_CACHE = Path("~/.cache/dotlocalslashbin/")
|
|
30
30
|
_HOME = str(Path("~").expanduser())
|
|
File without changes
|
|
File without changes
|
|
File without changes
|