isolate 0.12.4__tar.gz → 0.12.6__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.

Potentially problematic release.


This version of isolate might be problematic. Click here for more details.

Files changed (54) hide show
  1. {isolate-0.12.4 → isolate-0.12.6}/PKG-INFO +1 -1
  2. {isolate-0.12.4 → isolate-0.12.6}/pyproject.toml +1 -1
  3. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/common.py +2 -2
  4. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/virtualenv.py +1 -1
  5. isolate-0.12.6/src/isolate/py.typed +0 -0
  6. {isolate-0.12.4 → isolate-0.12.6}/README.md +0 -0
  7. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/__init__.py +0 -0
  8. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/__init__.py +0 -0
  9. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/_base.py +0 -0
  10. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/conda.py +0 -0
  11. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/local.py +0 -0
  12. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/pyenv.py +0 -0
  13. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/remote.py +0 -0
  14. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/backends/settings.py +0 -0
  15. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/common/__init__.py +0 -0
  16. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/common/timestamp.py +0 -0
  17. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/__init__.py +0 -0
  18. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/_local/__init__.py +0 -0
  19. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/_local/_base.py +0 -0
  20. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/_local/agent_startup.py +0 -0
  21. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/common.py +0 -0
  22. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/__init__.py +0 -0
  23. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/_base.py +0 -0
  24. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/agent.py +0 -0
  25. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/configuration.py +0 -0
  26. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/__init__.py +0 -0
  27. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/agent.proto +0 -0
  28. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/agent_pb2.py +0 -0
  29. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/agent_pb2.pyi +0 -0
  30. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/agent_pb2_grpc.py +0 -0
  31. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/common.proto +0 -0
  32. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/common_pb2.py +0 -0
  33. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/common_pb2.pyi +0 -0
  34. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/definitions/common_pb2_grpc.py +0 -0
  35. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/grpc/interface.py +0 -0
  36. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/ipc/__init__.py +0 -0
  37. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/ipc/_base.py +0 -0
  38. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/connections/ipc/agent.py +0 -0
  39. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/logs.py +0 -0
  40. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/registry.py +0 -0
  41. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/__init__.py +0 -0
  42. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/definitions/__init__.py +0 -0
  43. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/definitions/server.proto +0 -0
  44. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/definitions/server_pb2.py +0 -0
  45. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/definitions/server_pb2.pyi +0 -0
  46. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/definitions/server_pb2_grpc.py +0 -0
  47. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health/__init__.py +0 -0
  48. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health/health.proto +0 -0
  49. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health/health_pb2.py +0 -0
  50. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health/health_pb2.pyi +0 -0
  51. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health/health_pb2_grpc.py +0 -0
  52. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/health_server.py +0 -0
  53. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/interface.py +0 -0
  54. {isolate-0.12.4 → isolate-0.12.6}/src/isolate/server/server.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: isolate
3
- Version: 0.12.4
3
+ Version: 0.12.6
4
4
  Summary: Managed isolated environments for Python
5
5
  Author: Features & Labels
6
6
  Author-email: hello@fal.ai
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "isolate"
3
- version = "0.12.4"
3
+ version = "0.12.6"
4
4
  readme = "README.md"
5
5
  description = "Managed isolated environments for Python"
6
6
  authors = ["Features & Labels <hello@fal.ai>"]
@@ -250,6 +250,6 @@ def get_executable(command: str, home: str | None = None) -> Path:
250
250
  # TODO: we should probably show some instructions on how you
251
251
  # can install conda here.
252
252
  raise FileNotFoundError(
253
- f"Could not find {command} executable. If {command} executable is not available by default, please point isolate "
254
- f" to the path where conda binary is available '{home}'."
253
+ f"Could not find the {command} executable. If the {command} executable is not available by default, please point isolate "
254
+ f" to the path where the {command} binary is available '{home}'."
255
255
  )
@@ -60,7 +60,7 @@ class VirtualPythonEnvironment(BaseEnvironment[Path]):
60
60
  constraints = []
61
61
 
62
62
  extras = []
63
- if not self.resolver:
63
+ if self.resolver is not None:
64
64
  extras.append(f"resolver={self.resolver}")
65
65
 
66
66
  active_python_version = self.python_version or active_python()
File without changes
File without changes
File without changes