Run the install command.
(self)
| 89 | """Custom install command to throw warnings about external dependencies.""" |
| 90 | |
| 91 | def run(self): |
| 92 | """Run the install command.""" |
| 93 | install.run(self) |
| 94 | |
| 95 | if platform == "darwin": |
| 96 | warnings.warn( |
| 97 | "Installation of important packages for macOS is required. " |
| 98 | "Scripts in the experiments folder will likely not run without these " |
| 99 | "packages: gnu-getopt, parallel, coreutils. They can be installed with " |
| 100 | "Homebrew by running `brew install gnu-getopt parallel coreutils`." |
| 101 | "See https://brew.sh/ for installation instructions.", |
| 102 | ) |
| 103 | |
| 104 | |
| 105 | def get_version(version: "ScmVersion") -> str: |
no outgoing calls