Skip to content

Commit

Permalink
fix requires-python
Browse files Browse the repository at this point in the history
  • Loading branch information
kheina committed Jul 13, 2024
1 parent a38f334 commit 088cfe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
url='https://github.com/kheina-com/avrofastapi',
packages=find_packages(exclude=['tests']),
install_requires=list(filter(None, map(str.strip, open('requirements.txt').read().split()))),
python_requires='>=3.7.*',
python_requires='>=3.12',
license='Mozilla Public License 2.0',
extras_require=dict(map(lambda x : (x[1], open(x[0]).read().split()), filter(None, map(req_regex.match, listdir())))),
)
)

0 comments on commit 088cfe8

Please sign in to comment.