Compare commits
No commits in common. "81138aa12eee573c4012ccc6d541ec42476bc167" and "cf840258c299cb5963c9140d0bacdca4ad46b78e" have entirely different histories.
81138aa12e
...
cf840258c2
@ -5,7 +5,7 @@ project(
|
|||||||
).stdout().strip('\n'),
|
).stdout().strip('\n'),
|
||||||
# 'online.fxreader.uv',
|
# 'online.fxreader.uv',
|
||||||
# ['c', 'cpp'],
|
# ['c', 'cpp'],
|
||||||
version: '0.1.5.16+27.20',
|
version: '0.1.5.16+27.19',
|
||||||
# default_options: [
|
# default_options: [
|
||||||
# 'cpp_std=c++23',
|
# 'cpp_std=c++23',
|
||||||
# # 'prefer_static=true',
|
# # 'prefer_static=true',
|
||||||
|
@ -107,19 +107,13 @@ class CLI(abc.ABC):
|
|||||||
if len(argv) == 0:
|
if len(argv) == 0:
|
||||||
argv = ['check', '.',]
|
argv = ['check', '.',]
|
||||||
|
|
||||||
cmd = [
|
subprocess.check_call([
|
||||||
str(self.dist_settings.python_path),
|
self.dist_settings.python_path,
|
||||||
'-m',
|
'-m',
|
||||||
'ruff',
|
'ruff',
|
||||||
'--config', str(project.source_dir / 'pyproject.toml'),
|
'--config', str(project.source_dir / 'pyproject.toml'),
|
||||||
*argv,
|
*argv,
|
||||||
]
|
])
|
||||||
|
|
||||||
logger.info(dict(
|
|
||||||
cmd=cmd,
|
|
||||||
))
|
|
||||||
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
def pyright(
|
def pyright(
|
||||||
self,
|
self,
|
||||||
@ -549,8 +543,6 @@ class CLI(abc.ABC):
|
|||||||
|
|
||||||
project = self.projects[project_name]
|
project = self.projects[project_name]
|
||||||
|
|
||||||
bootstrap_settings = cli_bootstrap.BootstrapSettings.get()
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-f',
|
'-f',
|
||||||
@ -563,7 +555,7 @@ class CLI(abc.ABC):
|
|||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-p',
|
'-p',
|
||||||
dest='python_version',
|
dest='python_version',
|
||||||
default=bootstrap_settings.python_version,
|
default=None,
|
||||||
# type=pathlib.Path,
|
# type=pathlib.Path,
|
||||||
type=str,
|
type=str,
|
||||||
)
|
)
|
||||||
|
BIN
releases/whl/online_fxreader_pr34-0.1.5.16+27.20-py3-none-any.whl
(Stored with Git LFS)
BIN
releases/whl/online_fxreader_pr34-0.1.5.16+27.20-py3-none-any.whl
(Stored with Git LFS)
Binary file not shown.
Loading…
Reference in New Issue
Block a user