Skip to content

Commit

Permalink
Fix parenthesis priority issue
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel authored and ktf committed Jul 19, 2024
1 parent 2b66ab4 commit 9967470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# The 7.* series removed support for Python 3.6.
'setuptools_scm<7.0.0' if sys.version_info < (3, 7) else
'setuptools_scm'
] + ['packaging<=23'] if sys.version_info <(3, 7) else [],
] + (['packaging<=23'] if sys.version_info <(3, 7) else []),

# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
Expand Down

0 comments on commit 9967470

Please sign in to comment.