Skip to content

Commit 00cd65d

Browse files
committed
add OpenBSD to the list of supported platforms
closes #103
1 parent 1ac231d commit 00cd65d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ This library actively supports these operating systems:
114114
Some operating systems are enabled, but not actively tested or supported:
115115

116116
- macOS
117-
- FreeBSD
117+
- FreeBSD / OpenBSD
118118

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

readchar/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from ._config import config
99

1010

11-
if platform.startswith(("linux", "darwin", "freebsd")):
11+
if platform.startswith(("linux", "darwin", "freebsd", "openbsd")):
1212
from . import _posix_key as key
1313
from ._posix_read import readchar, readkey
1414
elif platform in ("win32", "cygwin"):

0 commit comments

Comments
 (0)