We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70dcb5e commit 2c0fe61Copy full SHA for 2c0fe61
run_release.py
@@ -1236,10 +1236,10 @@ def _api_key(api_key: str) -> str:
1236
auth_key = args.auth_key or os.getenv("AUTH_INFO")
1237
assert isinstance(auth_key, str), "We need an AUTH_INFO env var or --auth-key"
1238
1239
- if "linux" not in sys.platform:
+ if sys.platform not in ("darwin", "linux"):
1240
print(
1241
"""\
1242
-WARNING! This script has not been tested on a platform other than Linux.
+WARNING! This script has not been tested on a platform other than Linux and macOS.
1243
1244
Although it should work correctly as long as you have all the dependencies,
1245
some things may not work as expected. As a release manager, you should try to
0 commit comments