wepoll 0.1.3__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.
Files changed (27) hide show
  1. {wepoll-0.1.3 → wepoll-0.1.5}/PKG-INFO +2 -2
  2. {wepoll-0.1.3 → wepoll-0.1.5}/pyproject.toml +2 -2
  3. {wepoll-0.1.3 → wepoll-0.1.5}/setup.py +3 -0
  4. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/__init__.py +1 -1
  5. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/_wepoll.c +593 -529
  6. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/_wepoll.pxd +1 -1
  7. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/_wepoll.pyi +19 -4
  8. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/_wepoll.pyx +26 -21
  9. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/loop.py +1 -0
  10. wepoll-0.1.5/wepoll/msvc_compat.h +30 -0
  11. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/selector.py +1 -2
  12. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll.egg-info/PKG-INFO +2 -2
  13. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll.egg-info/SOURCES.txt +1 -0
  14. {wepoll-0.1.3 → wepoll-0.1.5}/MANIFEST.in +0 -0
  15. {wepoll-0.1.3 → wepoll-0.1.5}/README.md +0 -0
  16. {wepoll-0.1.3 → wepoll-0.1.5}/setup.cfg +0 -0
  17. {wepoll-0.1.3 → wepoll-0.1.5}/tests/test_wepoll_cyares.py +0 -0
  18. {wepoll-0.1.3 → wepoll-0.1.5}/tests/test_wepoll_eventloop.py +0 -0
  19. {wepoll-0.1.3 → wepoll-0.1.5}/tests/test_wepoll_selectors.py +0 -0
  20. {wepoll-0.1.3 → wepoll-0.1.5}/vendor/wepoll/wepoll.c +0 -0
  21. {wepoll-0.1.3 → wepoll-0.1.5}/vendor/wepoll/wepoll.h +0 -0
  22. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/__init__.pxd +0 -0
  23. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/flags.py +0 -0
  24. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll/socket.pxd +0 -0
  25. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll.egg-info/dependency_links.txt +0 -0
  26. {wepoll-0.1.3 → wepoll-0.1.5}/wepoll.egg-info/not-zip-safe +0 -0
  27. {wepoll-0.1.3 → 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
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
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.3"
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.9"
10
+ requires-python = ">=3.10"
11
11
  dependencies = []
12
12
 
13
13
  [tool.cibuildwheel]
@@ -1,6 +1,8 @@
1
1
  from Cython.Build import cythonize
2
2
  from setuptools import Extension, setup
3
3
 
4
+
5
+ # TODO: Move to pyproject.toml setup like in pyduktape3 in 0.1.6
4
6
  setup(
5
7
  ext_modules=cythonize(
6
8
  [
@@ -13,3 +15,4 @@ setup(
13
15
  ]
14
16
  )
15
17
  )
18
+
@@ -15,7 +15,7 @@ from .loop import WepollEventLoop
15
15
  from .selector import EpollSelector
16
16
 
17
17
  __author__ = "Vizonex"
18
- __version__ = "0.1.2"
18
+ __version__ = "0.1.5"
19
19
  __all__ = (
20
20
  "EPOLLERR",
21
21
  "EPOLLHUP",