nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git i/bikeshed/__init__.py w/bikeshed/__init__.py
2index 4450f6c..a697657 100644
3--- i/bikeshed/__init__.py
4+++ w/bikeshed/__init__.py
5@@ -32,23 +32,6 @@ def verify_python_version() -> None:
6
7 verify_python_version()
8
9-
10-def verify_requirements() -> None:
11- try:
12- subprocess.check_output([sys.executable, "-m", "pip", "check", "bikeshed"]) # noqa: S603
13- except subprocess.CalledProcessError as e:
14- print("ERROR: Broken or incomplete manual installation.")
15- print(str(e.output, encoding="utf-8"))
16- requirements_file_path = os.path.join(
17- os.path.dirname(os.path.dirname(os.path.realpath(__file__))),
18- "requirements.txt",
19- )
20- print(f'Run "pip3 install -r {requirements_file_path}" to complete installation')
21- print("Meanwhile, attempting to run Bikeshed anyway...")
22-
23-
24-verify_requirements()
25-
26 from . import (
27 config,
28 update,