plain.dev 0.33.2__tar.gz → 0.34.0__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.33.2 → plain_dev-0.34.0}/PKG-INFO +2 -2
  2. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/CHANGELOG.md +20 -0
  3. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/cli.py +8 -3
  4. {plain_dev-0.33.2 → plain_dev-0.34.0}/pyproject.toml +2 -2
  5. {plain_dev-0.33.2 → plain_dev-0.34.0}/.gitignore +0 -0
  6. {plain_dev-0.33.2 → plain_dev-0.34.0}/LICENSE +0 -0
  7. {plain_dev-0.33.2 → plain_dev-0.34.0}/README.md +0 -0
  8. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/README.md +0 -0
  9. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/__init__.py +0 -0
  10. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/contribute/README.md +0 -0
  11. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/contribute/__init__.py +0 -0
  12. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/contribute/cli.py +0 -0
  13. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/core.py +0 -0
  14. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/debug.py +0 -0
  15. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/default_settings.py +0 -0
  16. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/entrypoints.py +0 -0
  17. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/gunicorn_logging.json +0 -0
  18. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/mkcert.py +0 -0
  19. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/pdb.py +0 -0
  20. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/__init__.py +0 -0
  21. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/color.py +0 -0
  22. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/compat.py +0 -0
  23. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/manager.py +0 -0
  24. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/printer.py +0 -0
  25. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/poncho/process.py +0 -0
  26. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/precommit/__init__.py +0 -0
  27. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/precommit/cli.py +0 -0
  28. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/process.py +0 -0
  29. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/services.py +0 -0
  30. {plain_dev-0.33.2 → plain_dev-0.34.0}/plain/dev/utils.py +0 -0
  31. {plain_dev-0.33.2 → plain_dev-0.34.0}/tests/settings.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.dev
3
- Version: 0.33.2
3
+ Version: 0.34.0
4
4
  Summary: A single command that runs everything you need for local development.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
7
7
  License-File: LICENSE
8
- Requires-Python: >=3.11
8
+ Requires-Python: >=3.13
9
9
  Requires-Dist: click>=8.0.0
10
10
  Requires-Dist: gunicorn>20
11
11
  Requires-Dist: inotify
@@ -1,5 +1,25 @@
1
1
  # plain-dev changelog
2
2
 
3
+ ## [0.34.0](https://github.com/dropseed/plain/releases/plain-dev@0.34.0) (2025-09-19)
4
+
5
+ ### What's changed
6
+
7
+ - Minimum Python version requirement increased from 3.11 to 3.13 ([d86e307](https://github.com/dropseed/plain/commit/d86e307efb))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - Upgrade your Python environment to Python 3.13 or later
12
+
13
+ ## [0.33.3](https://github.com/dropseed/plain/releases/plain-dev@0.33.3) (2025-09-03)
14
+
15
+ ### What's changed
16
+
17
+ - Added retries to background service startup to improve reliability when services take longer to initialize ([e2b3a42](https://github.com/dropseed/plain/commit/e2b3a42313))
18
+
19
+ ### Upgrade instructions
20
+
21
+ - No changes required
22
+
3
23
  ## [0.33.2](https://github.com/dropseed/plain/releases/plain-dev@0.33.2) (2025-08-22)
4
24
 
5
25
  ### What's changed
@@ -58,9 +58,14 @@ class DevGroup(click.Group):
58
58
  stderr=subprocess.DEVNULL,
59
59
  )
60
60
 
61
- time.sleep(0.5) # Give it a moment to start
62
-
63
- # If it's already dead, show the output and quit
61
+ # Give services time to start and retry the check
62
+ wait_times = [0.5, 1, 1] # First check at 0.5s, then 1s intervals
63
+ for wait_time in wait_times:
64
+ time.sleep(wait_time)
65
+ if ServicesProcess.running_pid():
66
+ return # Services started successfully
67
+
68
+ # Only show error after multiple attempts
64
69
  if not ServicesProcess.running_pid():
65
70
  click.secho(
66
71
  "Failed to start dev services. Here are the logs:",
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "plain.dev"
3
- version = "0.33.2"
3
+ version = "0.34.0"
4
4
  description = "A single command that runs everything you need for local development."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  license = "BSD-3-Clause"
7
7
  readme = "README.md"
8
- requires-python = ">=3.11"
8
+ requires-python = ">=3.13"
9
9
  dependencies = [
10
10
  "plain<1.0.0",
11
11
  "click>=8.0.0",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes