Skip to content

Commit

Permalink
fix: python_requires>=3.6
Browse files Browse the repository at this point in the history
python_requires still allow python<3
with python 2.7 being dropped, it can be set to `python_requires>=3.6`
  • Loading branch information
mayeut committed Dec 21, 2024
1 parent 304f08f commit e4431e2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,7 @@ def main():
"test": TEST_DEPS,
}
kwargs.update(
python_requires=(
"!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
),
python_requires=">=3.6",
extras_require=extras_require,
zip_safe=False,
)
Expand Down

0 comments on commit e4431e2

Please sign in to comment.