From bb3e62637b711d2e4f6931b73c8692046b5bf104 Mon Sep 17 00:00:00 2001 From: Jeremy O'Brien Date: Thu, 6 Feb 2020 08:56:35 -0500 Subject: [PATCH] Add FreeBSD12.X and OpenBSD6.X support --- getkey/platforms.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/getkey/platforms.py b/getkey/platforms.py index 3bb4345..6a069d8 100644 --- a/getkey/platforms.py +++ b/getkey/platforms.py @@ -222,6 +222,8 @@ def windows_or_unix(*args, **kwargs): PLATFORMS = [ ('linux', PlatformUnix), ('darwin', PlatformUnix), + ('freebsd12', PlatformUnix), + ('openbsd6', PlatformUnix), ('win32', PlatformWindows), ('cygwin', windows_or_unix), ]