-
Notifications
You must be signed in to change notification settings - Fork 544
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into patch-1
- Loading branch information
Showing
37 changed files
with
511 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
[project] | ||
name = "uvloop" | ||
description = "Fast implementation of asyncio event loop on top of libuv" | ||
authors = [{name = "Yury Selivanov", email = "yury@magic.io"}] | ||
requires-python = '>=3.7.0' | ||
readme = "README.rst" | ||
license = {text = "MIT License"} | ||
dynamic = ["version"] | ||
keywords = [ | ||
"asyncio", | ||
"networking", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: AsyncIO", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: System :: Networking", | ||
] | ||
|
||
[project.urls] | ||
github = "https://github.com/MagicStack/uvloop" | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
# pycodestyle is a dependency of flake8, but it must be frozen because | ||
# their combination breaks too often | ||
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427) | ||
'aiohttp>=3.8.1; python_version < "3.12"', | ||
'aiohttp==3.9.0b0; python_version >= "3.12"', | ||
'flake8~=5.0', | ||
'psutil', | ||
'pycodestyle~=2.9.0', | ||
'pyOpenSSL~=23.0.0', | ||
'mypy>=0.800', | ||
'Cython(>=0.29.36,<0.30.0)', | ||
] | ||
docs = [ | ||
'Sphinx~=4.1.2', | ||
'sphinxcontrib-asyncio~=0.3.0', | ||
'sphinx_rtd_theme~=0.5.2', | ||
] | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=60", | ||
"wheel", | ||
"Cython(>=0.29.36,<0.30.0)", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
packages = ["uvloop"] | ||
|
||
[tool.cibuildwheel] | ||
build-frontend = "build" | ||
test-extras = "test" | ||
test-command = "python -m unittest discover -v {project}/tests" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib" | ||
testpaths = "tests" | ||
filterwarnings = "default" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
from uvloop import _testbase as tb | ||
from uvloop.loop import libuv_get_loop_t_ptr, libuv_get_version | ||
from uvloop.loop import _testhelper_unwrap_capsuled_pointer as unwrap | ||
|
||
|
||
class Test_UV_libuv(tb.UVTestCase): | ||
def test_libuv_get_loop_t_ptr(self): | ||
loop = self.new_loop() | ||
cap1 = libuv_get_loop_t_ptr(loop) | ||
cap2 = libuv_get_loop_t_ptr(loop) | ||
cap3 = libuv_get_loop_t_ptr(self.new_loop()) | ||
loop1 = self.new_loop() | ||
cap1 = libuv_get_loop_t_ptr(loop1) | ||
cap2 = libuv_get_loop_t_ptr(loop1) | ||
|
||
import pyximport | ||
loop2 = self.new_loop() | ||
cap3 = libuv_get_loop_t_ptr(loop2) | ||
|
||
pyximport.install() | ||
|
||
import cython_helper | ||
|
||
self.assertTrue(cython_helper.capsule_equals(cap1, cap2)) | ||
self.assertFalse(cython_helper.capsule_equals(cap1, cap3)) | ||
try: | ||
self.assertEqual(unwrap(cap1), unwrap(cap2)) | ||
self.assertNotEqual(unwrap(cap1), unwrap(cap3)) | ||
finally: | ||
loop1.close() | ||
loop2.close() | ||
|
||
def test_libuv_get_version(self): | ||
self.assertGreater(libuv_get_version(), 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.