Skip to content

Commit a9f2384

Browse files
authored
Add android as supported platform (#130)
* Add android to list for platfrom-checks * list termux as an untested platform in README.md
1 parent 753cb42 commit a9f2384

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ Some operating systems are enabled, but not actively tested or supported:
115115

116116
- macOS
117117
- FreeBSD / OpenBSD
118+
- Android
118119

119120
Theoretically every Unix based system should work, but they will not be actively tested.
120121
It is also required that somebody provides initial test results before the OS is enabled

readchar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ._config import config
1212

1313

14-
if platform.startswith(("linux", "darwin", "freebsd", "openbsd")):
14+
if platform.startswith(("linux", "darwin", "freebsd", "openbsd", "android")):
1515
from . import _posix_key as key
1616
from ._posix_read import readchar, readkey
1717
elif platform in ("win32", "cygwin"):

0 commit comments

Comments
 (0)