├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.rst ├── RELEASING.md ├── badge_server ├── .gcloudignore ├── Dockerfile ├── README.rst ├── app.yaml ├── datastore_cache.py ├── deployment │ └── app-with-secret.yaml ├── fake_cache.py ├── main.py ├── redis_cache.py ├── requirements.txt ├── static │ └── css │ │ └── theme.css ├── templates │ ├── all-badges.html │ ├── dependency-result.html │ ├── google-compatibility.html │ ├── one-badge.html │ └── self-compatibility.html ├── test_all_badges.py ├── test_badge_server.py ├── test_badges.py └── utils.py ├── best_practices └── README.rst ├── cloud_build ├── Dockerfile ├── README.rst ├── app.yaml └── cloudbuild.yaml ├── cloud_sql_proxy ├── compatibility_lib ├── README.rst ├── compatibility_lib │ ├── __init__.py │ ├── compatibility_checker.py │ ├── compatibility_store.py │ ├── configs.py │ ├── dependency_highlighter.py │ ├── dependency_highlighter_stub.py │ ├── deprecated_dep_finder.py │ ├── deprecated_dep_finder_stub.py │ ├── fake_compatibility_store.py │ ├── get_compatibility_data.py │ ├── package.py │ ├── package_crawler_static.py │ ├── semver_checker.py │ ├── test_compatibility_checker.py │ ├── test_compatibility_store.py │ ├── test_dependency_highlighter.py │ ├── test_deprecated_dep_finder.py │ ├── test_fake_compatibility_store.py │ ├── test_get_compatibility_data.py │ ├── test_semver_checker.py │ ├── test_utils.py │ ├── testdata │ │ ├── __init__.py │ │ └── mock_depinfo_data.py │ ├── testpkgs │ │ ├── added_args │ │ │ ├── 0.1.0 │ │ │ │ └── main.py │ │ │ └── 0.2.0 │ │ │ │ └── main.py │ │ ├── added_func │ │ │ ├── 0.1.0 │ │ │ │ └── main.py │ │ │ └── 0.2.0 │ │ │ │ └── main.py │ │ ├── removed_args │ │ │ ├── 0.1.0 │ │ │ │ └── main.py │ │ │ └── 0.2.0 │ │ │ │ └── main.py │ │ ├── removed_func │ │ │ ├── 0.1.0 │ │ │ │ └── main.py │ │ │ └── 0.2.0 │ │ │ │ └── main.py │ │ └── simple_function │ │ │ └── simple_function.py │ └── utils.py ├── requirements.txt ├── setup.cfg └── setup.py ├── compatibility_server ├── Dockerfile ├── README.rst ├── compatibility_checker_server.py ├── configs.py ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── fake_pip.py ├── loadtest │ └── locustfile.py ├── pip_checker.py ├── requirements.txt ├── run-in-docker.sh ├── test_configs.py ├── test_pip_checker.py ├── test_sanitize_packages.py └── views.py ├── credentials.json.enc ├── dashboard ├── css │ └── theme.css ├── dashboard_builder.py ├── grid-template.html ├── index.html ├── js │ └── main.js ├── main-template.html ├── monitoring.html └── test_dashboard_builder.py ├── nox.py ├── python-compatibility-tools.json ├── python-compatibility-tools.json.enc ├── requirements-test.txt ├── scripts ├── twine_upload.sh └── update_dashboard.sh ├── sql_schema ├── pairwise_compatibility_status_schema.json ├── release_time_for_dependencies.json └── self_compatibility_status_schema.json ├── system_test ├── test_badge_server.py └── test_compatibility_checker_server.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/RELEASING.md -------------------------------------------------------------------------------- /badge_server/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/.gcloudignore -------------------------------------------------------------------------------- /badge_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/Dockerfile -------------------------------------------------------------------------------- /badge_server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/README.rst -------------------------------------------------------------------------------- /badge_server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/app.yaml -------------------------------------------------------------------------------- /badge_server/datastore_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/datastore_cache.py -------------------------------------------------------------------------------- /badge_server/deployment/app-with-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/deployment/app-with-secret.yaml -------------------------------------------------------------------------------- /badge_server/fake_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/fake_cache.py -------------------------------------------------------------------------------- /badge_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/main.py -------------------------------------------------------------------------------- /badge_server/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/redis_cache.py -------------------------------------------------------------------------------- /badge_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/requirements.txt -------------------------------------------------------------------------------- /badge_server/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/static/css/theme.css -------------------------------------------------------------------------------- /badge_server/templates/all-badges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/templates/all-badges.html -------------------------------------------------------------------------------- /badge_server/templates/dependency-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/templates/dependency-result.html -------------------------------------------------------------------------------- /badge_server/templates/google-compatibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/templates/google-compatibility.html -------------------------------------------------------------------------------- /badge_server/templates/one-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/templates/one-badge.html -------------------------------------------------------------------------------- /badge_server/templates/self-compatibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/templates/self-compatibility.html -------------------------------------------------------------------------------- /badge_server/test_all_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/test_all_badges.py -------------------------------------------------------------------------------- /badge_server/test_badge_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/test_badge_server.py -------------------------------------------------------------------------------- /badge_server/test_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/test_badges.py -------------------------------------------------------------------------------- /badge_server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/badge_server/utils.py -------------------------------------------------------------------------------- /best_practices/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/best_practices/README.rst -------------------------------------------------------------------------------- /cloud_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/cloud_build/Dockerfile -------------------------------------------------------------------------------- /cloud_build/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/cloud_build/README.rst -------------------------------------------------------------------------------- /cloud_build/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/cloud_build/app.yaml -------------------------------------------------------------------------------- /cloud_build/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/cloud_build/cloudbuild.yaml -------------------------------------------------------------------------------- /cloud_sql_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/cloud_sql_proxy -------------------------------------------------------------------------------- /compatibility_lib/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/README.rst -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/__init__.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/compatibility_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/compatibility_checker.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/compatibility_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/compatibility_store.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/configs.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/dependency_highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/dependency_highlighter.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/dependency_highlighter_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/dependency_highlighter_stub.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/deprecated_dep_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/deprecated_dep_finder.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/deprecated_dep_finder_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/deprecated_dep_finder_stub.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/fake_compatibility_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/fake_compatibility_store.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/get_compatibility_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/get_compatibility_data.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/package.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/package_crawler_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/package_crawler_static.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/semver_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/semver_checker.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_compatibility_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_compatibility_checker.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_compatibility_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_compatibility_store.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_dependency_highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_dependency_highlighter.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_deprecated_dep_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_deprecated_dep_finder.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_fake_compatibility_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_fake_compatibility_store.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_get_compatibility_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_get_compatibility_data.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_semver_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_semver_checker.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/test_utils.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testdata/mock_depinfo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testdata/mock_depinfo_data.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/added_args/0.1.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/added_args/0.1.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/added_args/0.2.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/added_args/0.2.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/added_func/0.1.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/added_func/0.1.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/added_func/0.2.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/added_func/0.2.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/removed_args/0.1.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/removed_args/0.1.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/removed_args/0.2.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/removed_args/0.2.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/removed_func/0.1.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/removed_func/0.1.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/removed_func/0.2.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/removed_func/0.2.0/main.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/testpkgs/simple_function/simple_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/testpkgs/simple_function/simple_function.py -------------------------------------------------------------------------------- /compatibility_lib/compatibility_lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/compatibility_lib/utils.py -------------------------------------------------------------------------------- /compatibility_lib/requirements.txt: -------------------------------------------------------------------------------- 1 | retrying==1.3.3 2 | -------------------------------------------------------------------------------- /compatibility_lib/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /compatibility_lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_lib/setup.py -------------------------------------------------------------------------------- /compatibility_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/Dockerfile -------------------------------------------------------------------------------- /compatibility_server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/README.rst -------------------------------------------------------------------------------- /compatibility_server/compatibility_checker_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/compatibility_checker_server.py -------------------------------------------------------------------------------- /compatibility_server/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/configs.py -------------------------------------------------------------------------------- /compatibility_server/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/deployment/deploy.yaml -------------------------------------------------------------------------------- /compatibility_server/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/deployment/service.yaml -------------------------------------------------------------------------------- /compatibility_server/fake_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/fake_pip.py -------------------------------------------------------------------------------- /compatibility_server/loadtest/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/loadtest/locustfile.py -------------------------------------------------------------------------------- /compatibility_server/pip_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/pip_checker.py -------------------------------------------------------------------------------- /compatibility_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/requirements.txt -------------------------------------------------------------------------------- /compatibility_server/run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/run-in-docker.sh -------------------------------------------------------------------------------- /compatibility_server/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/test_configs.py -------------------------------------------------------------------------------- /compatibility_server/test_pip_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/test_pip_checker.py -------------------------------------------------------------------------------- /compatibility_server/test_sanitize_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/test_sanitize_packages.py -------------------------------------------------------------------------------- /compatibility_server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/compatibility_server/views.py -------------------------------------------------------------------------------- /credentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/credentials.json.enc -------------------------------------------------------------------------------- /dashboard/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/css/theme.css -------------------------------------------------------------------------------- /dashboard/dashboard_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/dashboard_builder.py -------------------------------------------------------------------------------- /dashboard/grid-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/grid-template.html -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/js/main.js -------------------------------------------------------------------------------- /dashboard/main-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/main-template.html -------------------------------------------------------------------------------- /dashboard/monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/monitoring.html -------------------------------------------------------------------------------- /dashboard/test_dashboard_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/dashboard/test_dashboard_builder.py -------------------------------------------------------------------------------- /nox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/nox.py -------------------------------------------------------------------------------- /python-compatibility-tools.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-compatibility-tools.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/python-compatibility-tools.json.enc -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /scripts/twine_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/scripts/twine_upload.sh -------------------------------------------------------------------------------- /scripts/update_dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/scripts/update_dashboard.sh -------------------------------------------------------------------------------- /sql_schema/pairwise_compatibility_status_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/sql_schema/pairwise_compatibility_status_schema.json -------------------------------------------------------------------------------- /sql_schema/release_time_for_dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/sql_schema/release_time_for_dependencies.json -------------------------------------------------------------------------------- /sql_schema/self_compatibility_status_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/sql_schema/self_compatibility_status_schema.json -------------------------------------------------------------------------------- /system_test/test_badge_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/system_test/test_badge_server.py -------------------------------------------------------------------------------- /system_test/test_compatibility_checker_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-python/HEAD/system_test/test_compatibility_checker_server.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | skipsdist=True 3 | envlist = py27,py36 4 | --------------------------------------------------------------------------------