* Add a workflow to update dependencies * Use '--no-docker' to run dependency update using local pythons Default method is to use docker * Only run the dependency update workflow manually PR are only created for master * Create constraints for all python versions * Use manylinux2010_x86_64:latest to update dependencies Co-authored-by: Joe Rickerby <joerick@mac.com>
18 lines
949 B
Python
18 lines
949 B
Python
from cibuildwheel.util import DependencyConstraints
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def test_defaults():
|
|
dependency_constraints = DependencyConstraints.with_defaults()
|
|
|
|
project_root = Path(__file__).parents[1]
|
|
resources_dir = project_root / 'cibuildwheel' / 'resources'
|
|
|
|
assert dependency_constraints.base_file_path.samefile(resources_dir / 'constraints.txt')
|
|
assert dependency_constraints.get_for_python_version('3.99').samefile(resources_dir / 'constraints.txt')
|
|
assert dependency_constraints.get_for_python_version('3.9').samefile(resources_dir / 'constraints-python39.txt')
|
|
assert dependency_constraints.get_for_python_version('3.6').samefile(resources_dir / 'constraints-python36.txt')
|
|
assert dependency_constraints.get_for_python_version('3.5').samefile(resources_dir / 'constraints-python35.txt')
|
|
assert dependency_constraints.get_for_python_version('2.7').samefile(resources_dir / 'constraints-python27.txt')
|