omdev 0.0.0.dev156__py3-none-any.whl → 0.0.0.dev158__py3-none-any.whl
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.
Potentially problematic release.
This version of omdev might be problematic. Click here for more details.
- omdev/amalg/amalg.py +1 -1
- omdev/cexts/cmake.py +1 -1
- omdev/cexts/scan.py +1 -1
- omdev/git.py +1 -1
- omdev/interp/cli.py +1 -1
- omdev/interp/inspect.py +1 -1
- omdev/interp/pyenv.py +2 -1
- omdev/manifests/main.py +1 -1
- omdev/precheck/lite.py +1 -1
- omdev/precheck/main.py +1 -1
- omdev/pyproject/cli.py +2 -2
- omdev/pyproject/pkg.py +1 -1
- omdev/pyproject/venvs.py +1 -1
- omdev/revisions.py +1 -1
- omdev/scripts/interp.py +366 -290
- omdev/scripts/pyproject.py +502 -423
- omdev/tools/docker.py +1 -1
- omdev/tools/git.py +1 -1
- omdev/tools/mkrelimp.py +1 -1
- omdev/tools/sqlrepl.py +1 -1
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/RECORD +26 -26
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/LICENSE +0 -0
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev156.dist-info → omdev-0.0.0.dev158.dist-info}/top_level.txt +0 -0
omdev/amalg/amalg.py
CHANGED
|
@@ -41,8 +41,8 @@ import tokenize_rt as trt
|
|
|
41
41
|
from omlish import check
|
|
42
42
|
from omlish import collections as col
|
|
43
43
|
from omlish import lang
|
|
44
|
-
from omlish import logs
|
|
45
44
|
from omlish.lite.runtime import REQUIRED_PYTHON_VERSION
|
|
45
|
+
from omlish.logs import all as logs
|
|
46
46
|
|
|
47
47
|
from .. import magic
|
|
48
48
|
from .. import tokens as tks
|
omdev/cexts/cmake.py
CHANGED
omdev/cexts/scan.py
CHANGED
omdev/git.py
CHANGED
omdev/interp/cli.py
CHANGED
|
@@ -12,8 +12,8 @@ import asyncio
|
|
|
12
12
|
import typing as ta
|
|
13
13
|
|
|
14
14
|
from omlish.lite.check import check
|
|
15
|
-
from omlish.lite.logs import configure_standard_logging
|
|
16
15
|
from omlish.lite.runtime import check_runtime_version
|
|
16
|
+
from omlish.logs.standard import configure_standard_logging
|
|
17
17
|
|
|
18
18
|
from .resolvers import DEFAULT_INTERP_RESOLVER
|
|
19
19
|
from .resolvers import INTERP_PROVIDER_TYPES_BY_NAME
|
omdev/interp/inspect.py
CHANGED
|
@@ -5,7 +5,7 @@ import logging
|
|
|
5
5
|
import sys
|
|
6
6
|
import typing as ta
|
|
7
7
|
|
|
8
|
-
from omlish.
|
|
8
|
+
from omlish.asyncs.asyncio.subprocesses import asyncio_subprocesses
|
|
9
9
|
from omlish.lite.logs import log
|
|
10
10
|
|
|
11
11
|
from ..packaging.versions import Version
|
omdev/interp/pyenv.py
CHANGED
|
@@ -18,7 +18,7 @@ import shutil
|
|
|
18
18
|
import sys
|
|
19
19
|
import typing as ta
|
|
20
20
|
|
|
21
|
-
from omlish.
|
|
21
|
+
from omlish.asyncs.asyncio.subprocesses import asyncio_subprocesses
|
|
22
22
|
from omlish.lite.cached import async_cached_nullary
|
|
23
23
|
from omlish.lite.cached import cached_nullary
|
|
24
24
|
from omlish.lite.check import check
|
|
@@ -314,6 +314,7 @@ class PyenvVersionInstaller:
|
|
|
314
314
|
self._version,
|
|
315
315
|
]
|
|
316
316
|
|
|
317
|
+
full_args: ta.List[str]
|
|
317
318
|
if self._given_install_name is not None:
|
|
318
319
|
full_args = [
|
|
319
320
|
os.path.join(check.not_none(await self._pyenv.root()), 'plugins', 'python-build', 'bin', 'python-build'), # noqa
|
omdev/manifests/main.py
CHANGED
|
@@ -6,7 +6,7 @@ import multiprocessing as mp
|
|
|
6
6
|
import os.path
|
|
7
7
|
|
|
8
8
|
from omlish.lite.json import json_dumps_pretty
|
|
9
|
-
from omlish.
|
|
9
|
+
from omlish.logs.standard import configure_standard_logging
|
|
10
10
|
|
|
11
11
|
from .build import ManifestBuilder
|
|
12
12
|
from .build import check_package_manifests
|
omdev/precheck/lite.py
CHANGED
|
@@ -9,7 +9,7 @@ import textwrap
|
|
|
9
9
|
import typing as ta
|
|
10
10
|
|
|
11
11
|
from omlish import cached
|
|
12
|
-
from omlish.
|
|
12
|
+
from omlish.subprocesses import subprocess_maybe_shell_wrap_exec
|
|
13
13
|
|
|
14
14
|
from .. import magic
|
|
15
15
|
from .base import Precheck
|
omdev/precheck/main.py
CHANGED
omdev/pyproject/cli.py
CHANGED
|
@@ -36,11 +36,11 @@ import typing as ta
|
|
|
36
36
|
from omlish.argparse.cli import ArgparseCli
|
|
37
37
|
from omlish.argparse.cli import argparse_arg
|
|
38
38
|
from omlish.argparse.cli import argparse_command
|
|
39
|
-
from omlish.
|
|
39
|
+
from omlish.asyncs.asyncio.subprocesses import asyncio_subprocesses
|
|
40
40
|
from omlish.lite.cached import cached_nullary
|
|
41
41
|
from omlish.lite.check import check
|
|
42
|
-
from omlish.lite.logs import configure_standard_logging
|
|
43
42
|
from omlish.lite.runtime import check_runtime_version
|
|
43
|
+
from omlish.logs.standard import configure_standard_logging
|
|
44
44
|
|
|
45
45
|
from ..toml.parser import toml_loads
|
|
46
46
|
from .configs import PyprojectConfig
|
omdev/pyproject/pkg.py
CHANGED
|
@@ -37,7 +37,7 @@ import typing as ta
|
|
|
37
37
|
|
|
38
38
|
from omlish.lite.cached import cached_nullary
|
|
39
39
|
from omlish.lite.logs import log
|
|
40
|
-
from omlish.
|
|
40
|
+
from omlish.subprocesses import subprocesses
|
|
41
41
|
|
|
42
42
|
from ..cexts.magic import CextMagic
|
|
43
43
|
from ..magic.find import find_magic_files
|
omdev/pyproject/venvs.py
CHANGED
|
@@ -3,7 +3,7 @@ import glob
|
|
|
3
3
|
import os.path
|
|
4
4
|
import typing as ta
|
|
5
5
|
|
|
6
|
-
from omlish.
|
|
6
|
+
from omlish.asyncs.asyncio.subprocesses import asyncio_subprocesses
|
|
7
7
|
from omlish.lite.cached import async_cached_nullary
|
|
8
8
|
from omlish.lite.cached import cached_nullary
|
|
9
9
|
from omlish.lite.check import check
|
omdev/revisions.py
CHANGED
|
@@ -15,8 +15,8 @@ import zipfile
|
|
|
15
15
|
|
|
16
16
|
from omlish.lite.cached import cached_nullary
|
|
17
17
|
from omlish.lite.check import check
|
|
18
|
-
from omlish.lite.logs import configure_standard_logging
|
|
19
18
|
from omlish.lite.logs import log
|
|
19
|
+
from omlish.logs.standard import configure_standard_logging
|
|
20
20
|
|
|
21
21
|
from .git import get_git_revision
|
|
22
22
|
from .wheelfile import WheelFile
|