repofail 0.2.7__tar.gz → 0.2.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {repofail-0.2.7 → repofail-0.2.8}/PKG-INFO +1 -1
- {repofail-0.2.7 → repofail-0.2.8}/pyproject.toml +2 -2
- {repofail-0.2.7 → repofail-0.2.8}/.github/workflows/publish.yml +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/.github/workflows/repofail.yml +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/.gitignore +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/CONTRIBUTING.md +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/Formula/repofail.rb +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/LICENSE +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/README.md +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/RULES.md +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/contract.json +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/docs/assets/demo-autogpt.png +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/docs/assets/repofail-logo.png +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/docs/logo.png +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/docs/screenshots/high_failure.png +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/docs/screenshots/nodefail.gif +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/__init__.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/cli.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/contract.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/engine.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/fleet.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/format.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/lock.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/models.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/risk.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/__init__.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/abi_wheel_mismatch.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/apple_silicon.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/base.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/docker_only.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/gpu_memory.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/info_signals.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/lock_file_missing.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/ml_niche.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/native_toolchain.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/node_engine.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/node_eol.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/node_windows.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/port_collision.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/python_eol.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/python_version.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/registry.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/spec_drift.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/system_libs.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/torch_cuda.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/rules/yaml_loader.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/scanner/__init__.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/scanner/ast_scan.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/scanner/host.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/scanner/parsers.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/scanner/repo.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/repofail/telemetry.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/__init__.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_cli_stage2.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_contract.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_fleet.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_integration.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_ml_rules.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_rules.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_scanner.py +0 -0
- {repofail-0.2.7 → repofail-0.2.8}/tests/test_telemetry.py +0 -0
|
@@ -4,9 +4,9 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "repofail"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.8"
|
|
8
8
|
description = "Predict why a repository will fail on your machine before you run it."
|
|
9
|
-
readme = "README.md"
|
|
9
|
+
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
authors = [{ name = "Jayanth" }]
|
|
12
12
|
dependencies = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|