Skip to content

Commit

Permalink
Add space
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Nov 12, 2023
1 parent 33318a6 commit bce7c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion print_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_phase_requirements(repo_path, phase='build'):
requires = config.get('build-system', {}).get('requires', [])
else:
deps = config.get('project', {}).get('dependencies', [])
opt_dict =config.get('project', {}).get('optional-dependencies', {})
opt_dict = config.get('project', {}).get('optional-dependencies', {})
requires = deps + opt_dict.get(phase, [])
base_req = [R for R in requires if not 'numpy' in R]
return ' '.join(base_req)
Expand Down

0 comments on commit bce7c75

Please sign in to comment.