wepoll 0.1.4__tar.gz → 0.1.5__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.
- {wepoll-0.1.4 → wepoll-0.1.5}/PKG-INFO +2 -2
- {wepoll-0.1.4 → wepoll-0.1.5}/pyproject.toml +2 -2
- {wepoll-0.1.4 → wepoll-0.1.5}/setup.py +1 -10
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/__init__.py +1 -2
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/_wepoll.c +693 -806
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/_wepoll.pxd +1 -1
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/_wepoll.pyi +17 -5
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/_wepoll.pyx +26 -27
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/loop.py +1 -0
- wepoll-0.1.5/wepoll/msvc_compat.h +30 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/selector.py +1 -2
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll.egg-info/PKG-INFO +2 -2
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll.egg-info/SOURCES.txt +1 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/MANIFEST.in +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/README.md +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/setup.cfg +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/tests/test_wepoll_cyares.py +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/tests/test_wepoll_eventloop.py +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/tests/test_wepoll_selectors.py +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/vendor/wepoll/wepoll.c +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/vendor/wepoll/wepoll.h +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/__init__.pxd +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/flags.py +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll/socket.pxd +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll.egg-info/dependency_links.txt +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll.egg-info/not-zip-safe +0 -0
- {wepoll-0.1.4 → wepoll-0.1.5}/wepoll.egg-info/top_level.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wepoll
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Cython adaptation of the wepoll C Library providing epoll selectors to windows
|
|
5
5
|
Author-email: Vizonex <VizonexBusiness@gmail.com>
|
|
6
6
|
License: MIT License
|
|
7
7
|
Project-URL: homepage, https://github.com/Vizonex/pywepoll
|
|
8
8
|
Project-URL: repository, https://github.com/Vizonex/pywepoll.git
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
12
|
# PyWepoll
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "wepoll"
|
|
3
3
|
description = "Cython adaptation of the wepoll C Library providing epoll selectors to windows"
|
|
4
|
-
version = "0.1.
|
|
4
|
+
version = "0.1.5"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Vizonex", email = "VizonexBusiness@gmail.com" }
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
license = {text = "MIT License"}
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
dependencies = []
|
|
12
12
|
|
|
13
13
|
[tool.cibuildwheel]
|
|
@@ -1,17 +1,8 @@
|
|
|
1
1
|
from Cython.Build import cythonize
|
|
2
2
|
from setuptools import Extension, setup
|
|
3
3
|
|
|
4
|
-
import sys
|
|
5
|
-
if sys.version_info[:2] < (3, 10):
|
|
6
|
-
from warnings import warn
|
|
7
|
-
warn(
|
|
8
|
-
"3.9 will be dropped in"
|
|
9
|
-
"version 0.1.5 consider upgrading",
|
|
10
|
-
DeprecationWarning
|
|
11
|
-
)
|
|
12
|
-
|
|
13
4
|
|
|
14
|
-
# TODO: Move to pyproject.toml setup like in pyduktape3
|
|
5
|
+
# TODO: Move to pyproject.toml setup like in pyduktape3 in 0.1.6
|
|
15
6
|
setup(
|
|
16
7
|
ext_modules=cythonize(
|
|
17
8
|
[
|
|
@@ -15,7 +15,7 @@ from .loop import WepollEventLoop
|
|
|
15
15
|
from .selector import EpollSelector
|
|
16
16
|
|
|
17
17
|
__author__ = "Vizonex"
|
|
18
|
-
__version__ = "0.1.
|
|
18
|
+
__version__ = "0.1.5"
|
|
19
19
|
__all__ = (
|
|
20
20
|
"EPOLLERR",
|
|
21
21
|
"EPOLLHUP",
|
|
@@ -34,4 +34,3 @@ __all__ = (
|
|
|
34
34
|
"epoll",
|
|
35
35
|
)
|
|
36
36
|
|
|
37
|
-
|