Skip to content

Commit

Permalink
Fix python_requires metadata to require >=3.6.1 (#2306)
Browse files Browse the repository at this point in the history
* Fix `python_requires` metadata to require >=3.6.1

* Add changelog entry
  • Loading branch information
hukkinj1 committed Feb 13, 2021
1 parent c3870b6 commit 40a925f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/2306-hukkinj1.md
@@ -0,0 +1 @@
fix: `python_requires` metadata to require >=3.6.1
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -124,7 +124,7 @@ def extra(self):
license='MIT',
packages=['pydantic'],
package_data={'pydantic': ['py.typed']},
python_requires='>=3.6',
python_requires='>=3.6.1',
zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html
install_requires=[
'dataclasses>=0.6;python_version<"3.7"'
Expand Down

0 comments on commit 40a925f

Please sign in to comment.