fast-dev-cli 0.25.4__tar.gz → 0.25.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fast-dev-cli
3
- Version: 0.25.4
3
+ Version: 0.25.5
4
4
  Summary: Python project development tool.
5
5
  Author-Email: Waket Zheng <waketzheng@gmail.com>>
6
6
  Classifier: Development Status :: 4 - Beta
@@ -0,0 +1 @@
1
+ __version__ = "0.25.5"
@@ -1847,7 +1847,7 @@ def dev(
1847
1847
  file: str | None | ArgumentInfo = None,
1848
1848
  dry: bool = False,
1849
1849
  ) -> None:
1850
- if just is not False and should_use_just():
1850
+ if just is True or (just is None and should_use_just()):
1851
1851
  args = [i for i in sys.argv[2:] if i != "--dry"]
1852
1852
  cmd = "just dev"
1853
1853
  else:
@@ -29,7 +29,7 @@ dependencies = [
29
29
  "typer>=0.24.0,<1",
30
30
  "tomli >=2.0.1,<3; python_version < '3.11'",
31
31
  ]
32
- version = "0.25.4"
32
+ version = "0.25.5"
33
33
 
34
34
  [project.urls]
35
35
  Homepage = "https://github.com/waketzheng/fast-dev-cli"
@@ -1 +0,0 @@
1
- __version__ = "0.25.4"
File without changes
File without changes