Skip to content

Commit cf76b26

Browse files
committed
Fix the syntax error for setup.py in 7.2.0
Signed-off-by: Chin Yeung Li <[email protected]>
1 parent b3a60c2 commit cf76b26

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
==============================
22
Changelog
3+
20xx-xx-xx
4+
Release 7.2.1
5+
6+
* Fix the syntax for setup's python_requires since newer version of
7+
setuptools (with newer packaging) versions do not accept star in the
8+
Python version spec.
9+
10+
311
2022-10-24
412
Release 7.2.0
513

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ zip_safe = false
5555

5656
setup_requires = setuptools_scm[toml] >= 4
5757

58-
python_requires = >=3.6.*
58+
python_requires = >=3.6
5959

6060
install_requires =
6161
attrs

0 commit comments

Comments
 (0)