plain.dev 0.7.0__tar.gz → 0.7.2__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.
Files changed (31) hide show
  1. {plain_dev-0.7.0 → plain_dev-0.7.2}/PKG-INFO +1 -1
  2. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/services.py +4 -4
  3. {plain_dev-0.7.0 → plain_dev-0.7.2}/pyproject.toml +1 -1
  4. {plain_dev-0.7.0 → plain_dev-0.7.2}/LICENSE +0 -0
  5. {plain_dev-0.7.0 → plain_dev-0.7.2}/README.md +0 -0
  6. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/README.md +0 -0
  7. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/__init__.py +0 -0
  8. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/cli.py +0 -0
  9. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/config.py +0 -0
  10. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/contribute/__init__.py +0 -0
  11. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/contribute/cli.py +0 -0
  12. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/db/__init__.py +0 -0
  13. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/db/cli.py +0 -0
  14. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/db/container.py +0 -0
  15. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/debug.py +0 -0
  16. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/default_settings.py +0 -0
  17. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/mkcert.py +0 -0
  18. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/pid.py +0 -0
  19. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/__init__.py +0 -0
  20. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/color.py +0 -0
  21. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/compat.py +0 -0
  22. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/manager.py +0 -0
  23. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/printer.py +0 -0
  24. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/poncho/process.py +0 -0
  25. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/precommit/__init__.py +0 -0
  26. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/precommit/cli.py +0 -0
  27. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/requests.py +0 -0
  28. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/templates/dev/requests.html +0 -0
  29. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/urls.py +0 -0
  30. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/utils.py +0 -0
  31. {plain_dev-0.7.0 → plain_dev-0.7.2}/plain/dev/views.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plain.dev
3
- Version: 0.7.0
3
+ Version: 0.7.2
4
4
  Summary: Local development tools for Plain.
5
5
  Home-page: https://plainframework.com
6
6
  License: BSD-3-Clause
@@ -6,11 +6,11 @@ from pathlib import Path
6
6
 
7
7
  import click
8
8
  import tomllib
9
- from honcho.manager import Manager as HonchoManager
10
9
 
11
10
  from plain.runtime import APP_PATH
12
11
 
13
12
  from .pid import Pid
13
+ from .poncho.manger import Manager as PonchoManager
14
14
  from .utils import has_pyproject_toml
15
15
 
16
16
 
@@ -31,7 +31,7 @@ class Services:
31
31
  )
32
32
 
33
33
  def __init__(self):
34
- self.manager = HonchoManager()
34
+ self.poncho = PonchoManager()
35
35
 
36
36
  def run(self):
37
37
  services = self.get_services(APP_PATH.parent)
@@ -41,9 +41,9 @@ class Services:
41
41
  "PYTHONUNBUFFERED": "true",
42
42
  **data.get("env", {}),
43
43
  }
44
- self.manager.add_process(name, data["cmd"], env=env)
44
+ self.poncho.add_process(name, data["cmd"], env=env)
45
45
 
46
- self.manager.loop()
46
+ self.poncho.loop()
47
47
 
48
48
  def __enter__(self):
49
49
  if not self.get_services(APP_PATH.parent):
@@ -5,7 +5,7 @@ packages = [
5
5
  { include = "plain" },
6
6
  ]
7
7
 
8
- version = "0.7.0"
8
+ version = "0.7.2"
9
9
  description = "Local development tools for Plain."
10
10
  authors = ["Dave Gaeddert <dave.gaeddert@dropseed.dev>"]
11
11
  license = "BSD-3-Clause"
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