xoscar 0.6.0__cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.6.1__cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

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 xoscar might be problematic. Click here for more details.

xoscar/virtualenv/uv.py CHANGED
@@ -58,19 +58,13 @@ class UVVirtualEnvManager(VirtualEnvManager):
58
58
  if "trusted_host" in kwargs and kwargs["trusted_host"]:
59
59
  cmd += ["--trusted-host", kwargs["trusted_host"]]
60
60
 
61
- self._install_process = subprocess.Popen(
62
- cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE
63
- )
64
-
65
- stdout, stderr = self._install_process.communicate()
66
- returncode = self._install_process.returncode
61
+ self._install_process = process = subprocess.Popen(cmd)
62
+ returncode = process.wait()
67
63
 
68
64
  self._install_process = None # install finished, clear reference
69
65
 
70
66
  if returncode != 0:
71
- raise subprocess.CalledProcessError(
72
- returncode, cmd, output=stdout, stderr=stderr
73
- )
67
+ raise subprocess.CalledProcessError(returncode, cmd)
74
68
 
75
69
  def cancel_install(self):
76
70
  if self._install_process and self._install_process.poll() is None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xoscar
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: Python actor framework for heterogeneous computing.
5
5
  Home-page: http://github.com/xorbitsai/xoscar
6
6
  Author: Qin Xuye
@@ -1,7 +1,7 @@
1
- xoscar-0.6.0.dist-info/WHEEL,sha256=odWhGiW78xn3o-6XlxWIPYOVfFPS2CRR8nn187EmA10,153
2
- xoscar-0.6.0.dist-info/RECORD,,
3
- xoscar-0.6.0.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
4
- xoscar-0.6.0.dist-info/METADATA,sha256=xRi_7864BdBxjqs8TCKOTzsQjIqUUL_GLfoICD9MySw,9131
1
+ xoscar-0.6.1.dist-info/WHEEL,sha256=odWhGiW78xn3o-6XlxWIPYOVfFPS2CRR8nn187EmA10,153
2
+ xoscar-0.6.1.dist-info/RECORD,,
3
+ xoscar-0.6.1.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
4
+ xoscar-0.6.1.dist-info/METADATA,sha256=9fv3VVarAR1QSCiE-ufI-_7w9qXAYxsTeDVzbAAWdC4,9131
5
5
  xoscar/core.pxd,sha256=I_C2ka7XryyGnnAVXUVm8xfS1gtIrCs6X-9rswgOcUU,1317
6
6
  xoscar/core.pyx,sha256=phN-yYV0A0QI8WFi2jCu0nc4CnShTepfDi0V7ZrLYPY,22092
7
7
  xoscar/backend.py,sha256=is436OPkZfSpQXaoqTRVta5eoye_pp45RFgCstAk2hU,1850
@@ -58,7 +58,7 @@ xoscar/backends/indigen/pool.py,sha256=v0Ps79W0WyeFSt2YxCJnh7q_1dnRQmo9887gcW3pN
58
58
  xoscar/backends/indigen/__init__.py,sha256=tKHP5ClzedBRBpZsLRVErR3EUNbbDm4CY4u0rCFJr44,685
59
59
  xoscar/virtualenv/core.py,sha256=YMN6yHoNeEc8ecbJMbZkKeWKUABK1mUZ_OYOjcbRqWs,1263
60
60
  xoscar/virtualenv/__init__.py,sha256=65t9_X1DvbanNjFy366SiiWZrRTpa9SXWMXPmqayE-4,1117
61
- xoscar/virtualenv/uv.py,sha256=wP0wVgWkncABpXnNRVPuOPaeIP7fy3c0LRVrKBFtqU8,3042
61
+ xoscar/virtualenv/uv.py,sha256=l9w5JxETbW2wN8vfZR7k7aKTz4cWV4MvH06MoogBOVc,2842
62
62
  xoscar/metrics/api.py,sha256=BBlMIFvVAGVfrtpeJ1YlH9Tqhy9OzGavwvGyeHcQ0Tk,8856
63
63
  xoscar/metrics/__init__.py,sha256=9Badi7rxYikGm2dQiNCrj9GgMRBxwuR3JaEKcFZmfak,705
64
64
  xoscar/metrics/backends/metric.py,sha256=aPhyc8JgH22L3rcHP8IjsmgrhSODjg6B5TZVnre97y8,4446
File without changes