Skip to content

Commit 1de2850

Browse files
authored
Add py.typed and bump version to beta. (ReactiveX#374)
1 parent cd3d5a5 commit 1de2850

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,6 @@ _build
7575

7676
# Mac OS
7777
.DS_Store
78+
79+
# Type checkers
80+
.pyre

project.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = Rx
33
project = RxPY
4-
version = 3.0.0-alpha2
4+
version = 3.0.0-beta1
55
description = Reactive Extensions (Rx) for Python
66
author = Dag Brattli
77
author_email = [email protected]

rx/py.typed

Whitespace-only changes.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
setup_requires=['pytest-runner'],
5555
tests_require=['pytest>=4.4.1', 'pytest-asyncio>=0.10.0', 'coverage>=4.5.3'],
5656

57+
package_data={'rx': ['py.typed']},
5758
packages=['rx', 'rx.internal', 'rx.core', 'rx.core.abc',
5859
'rx.core.operators', 'rx.core.observable',
5960
'rx.core.observer', 'rx.core.operators.connectable',

0 commit comments

Comments
 (0)