uvloop icon indicating copy to clipboard operation
uvloop copied to clipboard

Current version of libuv

Open MaximKiselev opened this issue 2 years ago • 1 comments

Hi, how i can get current version of libuv? I tried uvloop.__version__ but this property shows only uvloop version? On the system - all are clean. apt does not show any libuv version but script works...

import ctypes
libuv = ctypes.CDLL("oop.cpython-312-x86_64-linux-gnu.so")
libuv.uv_version_string()
#2111514146 - ???????

thanks

MaximKiselev avatar Jan 15 '24 03:01 MaximKiselev

libuv embeded into https://github.com/MagicStack/uvloop/tree/master/vendor as git submodule. Version v1.46.0 for now.

You can use system libuv if build uvloop with option https://github.com/MagicStack/uvloop/blob/6c770dc3fbdd281d15c2ad46588c139696f9269c/setup.py#L74-L75

alex-eri avatar Feb 01 '24 04:02 alex-eri