Skip to content

Commit

Permalink
add OpenBSD to the list of supported platforms
Browse files Browse the repository at this point in the history
closes #103
  • Loading branch information
Cube707 committed Mar 17, 2023
1 parent 1ac231d commit 00cd65d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ This library actively supports these operating systems:
Some operating systems are enabled, but not actively tested or supported:

- macOS
- FreeBSD
- FreeBSD / OpenBSD

Theoretically every Unix based system should work, but they will not be actively tested.
It is also required that somebody provides initial test results before the OS is enabled
Expand Down
2 changes: 1 addition & 1 deletion readchar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ._config import config


if platform.startswith(("linux", "darwin", "freebsd")):
if platform.startswith(("linux", "darwin", "freebsd", "openbsd")):
from . import _posix_key as key
from ._posix_read import readchar, readkey
elif platform in ("win32", "cygwin"):
Expand Down

0 comments on commit 00cd65d

Please sign in to comment.