xoscar 0.6.0__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.6.1__cp39-cp39-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.1
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=OyU_a3_0g4nHrDfscT3ntE6UTOgLWum2-dKsAfzpQqc,150
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=PxvcFM64ACvq8BuPaniMOGyosrQHR0u7aBcnnBtW-1w,9076
1
+ xoscar-0.6.1.dist-info/WHEEL,sha256=OyU_a3_0g4nHrDfscT3ntE6UTOgLWum2-dKsAfzpQqc,150
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=G1ypXuZl-ZjV48coc-vldRpkEeOq43k5BXIBowvxmo0,9076
5
5
  xoscar/context.cpython-39-aarch64-linux-gnu.so,sha256=qpQRWk0vMVKnoiP-MIP2hcUzYGhQnsebZSHLMK8trRE,1443792
6
6
  xoscar/core.pxd,sha256=I_C2ka7XryyGnnAVXUVm8xfS1gtIrCs6X-9rswgOcUU,1317
7
7
  xoscar/core.pyx,sha256=phN-yYV0A0QI8WFi2jCu0nc4CnShTepfDi0V7ZrLYPY,22092
@@ -56,7 +56,7 @@ xoscar/backends/indigen/pool.py,sha256=v0Ps79W0WyeFSt2YxCJnh7q_1dnRQmo9887gcW3pN
56
56
  xoscar/backends/indigen/__init__.py,sha256=tKHP5ClzedBRBpZsLRVErR3EUNbbDm4CY4u0rCFJr44,685
57
57
  xoscar/virtualenv/core.py,sha256=YMN6yHoNeEc8ecbJMbZkKeWKUABK1mUZ_OYOjcbRqWs,1263
58
58
  xoscar/virtualenv/__init__.py,sha256=65t9_X1DvbanNjFy366SiiWZrRTpa9SXWMXPmqayE-4,1117
59
- xoscar/virtualenv/uv.py,sha256=wP0wVgWkncABpXnNRVPuOPaeIP7fy3c0LRVrKBFtqU8,3042
59
+ xoscar/virtualenv/uv.py,sha256=l9w5JxETbW2wN8vfZR7k7aKTz4cWV4MvH06MoogBOVc,2842
60
60
  xoscar/metrics/api.py,sha256=BBlMIFvVAGVfrtpeJ1YlH9Tqhy9OzGavwvGyeHcQ0Tk,8856
61
61
  xoscar/metrics/__init__.py,sha256=9Badi7rxYikGm2dQiNCrj9GgMRBxwuR3JaEKcFZmfak,705
62
62
  xoscar/metrics/backends/metric.py,sha256=aPhyc8JgH22L3rcHP8IjsmgrhSODjg6B5TZVnre97y8,4446
File without changes