fast-dev-cli 0.19.8__tar.gz → 0.19.9__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.
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/PKG-INFO +20 -9
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/README.md +19 -8
- fast_dev_cli-0.19.9/fast_dev_cli/__init__.py +1 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/fast_dev_cli/cli.py +2 -2
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/pyproject.toml +1 -1
- fast_dev_cli-0.19.8/fast_dev_cli/__init__.py +0 -1
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/LICENSE +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/fast_dev_cli/__main__.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/fast_dev_cli/py.typed +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/pdm_build.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/scripts/check.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/scripts/deps.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/scripts/format.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/scripts/test.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/__init__.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/assets/uv-tx.lock +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/assets/uv-upload-time.lock +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/assets/uv.lock +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/conftest.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_bump.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_deps.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_exec.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_fast_test.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_functions.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_help.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_lint.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_poetry_version_plugin.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_pypi.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_runserver.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_sync.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_tag.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_upgrade.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_upload.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/test_version.py +0 -0
- {fast_dev_cli-0.19.8 → fast_dev_cli-0.19.9}/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fast-dev-cli
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.9
|
|
4
4
|
Summary: Python project development tool.
|
|
5
5
|
Author-Email: Waket Zheng <waketzheng@gmail.com>>
|
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -78,11 +78,25 @@ Python 3.10+
|
|
|
78
78
|
|
|
79
79
|
## Features
|
|
80
80
|
|
|
81
|
-
- Support
|
|
82
|
-
- Support
|
|
81
|
+
- Support uv/pd/mpoetry
|
|
82
|
+
- Support MacOS/Linux/Windows
|
|
83
83
|
|
|
84
84
|
## Installation
|
|
85
85
|
|
|
86
|
+
- Global install
|
|
87
|
+
|
|
88
|
+
<div class="termy">
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
uv tool install --python 3.14 fastdevcli-slim
|
|
92
|
+
# Or: pipx install fastdevcli-slim
|
|
93
|
+
```
|
|
94
|
+
*Will create a `fast` command in ~/.local/bin
|
|
95
|
+
|
|
96
|
+
- Install in project
|
|
97
|
+
|
|
98
|
+
</div>
|
|
99
|
+
|
|
86
100
|
<div class="termy">
|
|
87
101
|
|
|
88
102
|
```bash
|
|
@@ -133,11 +147,8 @@ fast pypi
|
|
|
133
147
|
uvx --from fastdevcli-slim fast
|
|
134
148
|
```
|
|
135
149
|
|
|
136
|
-
##
|
|
137
|
-
```bash
|
|
138
|
-
pipx install fastdevcli-slim
|
|
139
|
-
```
|
|
140
|
-
Or:
|
|
150
|
+
## Lint/Check by ty instead of mypy
|
|
141
151
|
```bash
|
|
142
|
-
|
|
152
|
+
fast lint --ty
|
|
153
|
+
fast check --ty
|
|
143
154
|
```
|
|
@@ -43,11 +43,25 @@ Python 3.10+
|
|
|
43
43
|
|
|
44
44
|
## Features
|
|
45
45
|
|
|
46
|
-
- Support
|
|
47
|
-
- Support
|
|
46
|
+
- Support uv/pd/mpoetry
|
|
47
|
+
- Support MacOS/Linux/Windows
|
|
48
48
|
|
|
49
49
|
## Installation
|
|
50
50
|
|
|
51
|
+
- Global install
|
|
52
|
+
|
|
53
|
+
<div class="termy">
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
uv tool install --python 3.14 fastdevcli-slim
|
|
57
|
+
# Or: pipx install fastdevcli-slim
|
|
58
|
+
```
|
|
59
|
+
*Will create a `fast` command in ~/.local/bin
|
|
60
|
+
|
|
61
|
+
- Install in project
|
|
62
|
+
|
|
63
|
+
</div>
|
|
64
|
+
|
|
51
65
|
<div class="termy">
|
|
52
66
|
|
|
53
67
|
```bash
|
|
@@ -98,11 +112,8 @@ fast pypi
|
|
|
98
112
|
uvx --from fastdevcli-slim fast
|
|
99
113
|
```
|
|
100
114
|
|
|
101
|
-
##
|
|
102
|
-
```bash
|
|
103
|
-
pipx install fastdevcli-slim
|
|
104
|
-
```
|
|
105
|
-
Or:
|
|
115
|
+
## Lint/Check by ty instead of mypy
|
|
106
116
|
```bash
|
|
107
|
-
|
|
117
|
+
fast lint --ty
|
|
118
|
+
fast check --ty
|
|
108
119
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.19.9"
|
|
@@ -1163,7 +1163,7 @@ class LintCode(DryRun):
|
|
|
1163
1163
|
)
|
|
1164
1164
|
prefix = ""
|
|
1165
1165
|
should_run_by_tool = with_prefix
|
|
1166
|
-
if not should_run_by_tool:
|
|
1166
|
+
if not should_run_by_tool and "mypy" in str(tools):
|
|
1167
1167
|
if is_venv() and Path(sys.argv[0]).parent != Path.home().joinpath(
|
|
1168
1168
|
".local/bin"
|
|
1169
1169
|
): # Virtual environment activated and fast-dev-cli is installed in it
|
|
@@ -1177,7 +1177,7 @@ class LintCode(DryRun):
|
|
|
1177
1177
|
"You may need to run the following command"
|
|
1178
1178
|
f" to install ruff:\n\n {command}\n"
|
|
1179
1179
|
)
|
|
1180
|
-
elif
|
|
1180
|
+
elif cls.missing_mypy_exec():
|
|
1181
1181
|
should_run_by_tool = True
|
|
1182
1182
|
if check_call('python -c "import fast_dev_cli"'):
|
|
1183
1183
|
command = 'python -m pip install -U "fast-dev-cli"'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.19.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|