Skip to content

Commit

Permalink
Move to flit for building the project. Prepare for 2.0.1 release.
Browse files Browse the repository at this point in the history
Signed-off-by: Dan O'Reilly <[email protected]>
  • Loading branch information
dano committed Sep 15, 2022
1 parent 1c8b714 commit a4d0e11
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 382 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.idea
*.pyc

*.egg-info
*.egg-info
**/*.swp
**/*.pyc
dist
build
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ the event loop.

What's new
----------
`v2.0.1`
- Fixed a bug that kept the `AioBarrier` and `AioEvent` proxies returned from `AioManager` instances from working. Thanks to Giorgos Apostolopoulos for the fix.

`v2.0.0`

Expand Down
2 changes: 0 additions & 2 deletions aioprocessing/.gitignore

This file was deleted.

3 changes: 2 additions & 1 deletion aioprocessing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
version = "2.0.1"
version_info = (2, 0, 1, 1)
version_info = (2, 0, 1, 0)
__version__=version

if hasattr(multiprocessing, "get_context"):

Expand Down
2 changes: 1 addition & 1 deletion aioprocessing/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Semaphore,
)

from aioprocessing.locks import _ContextManager
from .locks import _ContextManager
from .executor import _ExecutorMixin
from .mp import managers as _managers

Expand Down
332 changes: 0 additions & 332 deletions ez_setup.py

This file was deleted.

Loading

0 comments on commit a4d0e11

Please sign in to comment.