Description
requirements.txt and azure-pipelines.yml are not in sync with respect to click and possibly other packages.
requirements.txt says:
azure-pipelines.yml says:
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu22_test_all_supported_click_versions
image_name: ubuntu-22.04
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
python_architecture: x64
test_suites:
click_versions: |
for clk_ver in 8.3.0 8.2.0 8.2.1 8.1.7 8.1.6 8.1.5 8.1.4 8.1.3 8.1.2 8.1.1 8.1.0 8.0.4 8.0.2 8.0.3 8.0.1 7.1.2 7.1.1 7.1 6.7;
do
venv/bin/pip install click==$clk_ver;
venv/bin/scancode -i samples/ -n3 --json foo.json;
venv/bin/scancode -i --verbose samples/ -n3 --json foo.json;
done
Some of these versions are really really old and the version of click that is in requirements.txt is missing.
Description
requirements.txt and azure-pipelines.yml are not in sync with respect to
clickand possibly other packages.requirements.txt says:
azure-pipelines.yml says:
Some of these versions are really really old and the version of
clickthat is in requirements.txt is missing.