Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/tox/create_package_and_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def build_and_discover_package(setuppy_path, dist_dir, target_setup, package_typ
addition_necessary = False

# ...do we need to install the new version? if the existing specifier matches, we're fine
if installed_pkgs[req_name] in req_specifier:
if req_specifier is not None and installed_pkgs[req_name] in req_specifier:
addition_necessary = False

if addition_necessary:
Expand Down