eventdispatch 0.1.20__tar.gz → 0.1.21__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eventdispatch
3
- Version: 0.1.20
3
+ Version: 0.1.21
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -236,3 +236,11 @@ virtualenv try-eventdispatch
236
236
  . try-eventdispatch/bin/activate
237
237
  pip install eventdispatch
238
238
  ```
239
+
240
+ ## Issues/Contributing
241
+
242
+ I do not expect the `core` module to be volatile much since the mechanism is very straightforward.
243
+
244
+ Any volatility can arguably be captured in `Event` or `EventDispatch` child classes.
245
+
246
+ Although archived, I do actively maintain this repo. Please open an issue or file a fork+PR if you have any bugs/bugfixes/features!
@@ -17,4 +17,12 @@ sudo apt install python3-eventdispatch
17
17
  virtualenv try-eventdispatch
18
18
  . try-eventdispatch/bin/activate
19
19
  pip install eventdispatch
20
- ```
20
+ ```
21
+
22
+ ## Issues/Contributing
23
+
24
+ I do not expect the `core` module to be volatile much since the mechanism is very straightforward.
25
+
26
+ Any volatility can arguably be captured in `Event` or `EventDispatch` child classes.
27
+
28
+ Although archived, I do actively maintain this repo. Please open an issue or file a fork+PR if you have any bugs/bugfixes/features!
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eventdispatch
3
- Version: 0.1.20
3
+ Version: 0.1.21
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -236,3 +236,11 @@ virtualenv try-eventdispatch
236
236
  . try-eventdispatch/bin/activate
237
237
  pip install eventdispatch
238
238
  ```
239
+
240
+ ## Issues/Contributing
241
+
242
+ I do not expect the `core` module to be volatile much since the mechanism is very straightforward.
243
+
244
+ Any volatility can arguably be captured in `Event` or `EventDispatch` child classes.
245
+
246
+ Although archived, I do actively maintain this repo. Please open an issue or file a fork+PR if you have any bugs/bugfixes/features!
@@ -1,6 +1,5 @@
1
1
  LICENSE
2
2
  README.md
3
- README.rst
4
3
  pyproject.toml
5
4
  setup.py
6
5
  eventdispatch/__init__.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eventdispatch"
7
- version = "0.1.20"
7
+ version = "0.1.21"
8
8
  authors = [{name = "Charlie Yan", email = "cyanatg@gmail.com"}]
9
9
  dynamic = ["scripts", "dependencies"]
10
10
  description = "Event Dispatch: discrete time synchronization"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='eventdispatch',
5
- version='0.1.20',
5
+ version='0.1.21',
6
6
  description='Event Dispatch, a discrete time synchronizer',
7
7
  url='http://github.com/cyan-at/eventdispatch',
8
8
  author='Charlie Yan',
File without changes
File without changes
File without changes