Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
3.7 minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca committed Feb 14, 2021
1 parent 549f45c commit 3e50270
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -34,5 +34,5 @@ jobs:
- name: run tests
run: make test
- name: upload coverage
if: matrix.python-version == '3.8'
if: matrix.python-version == '3.9'
run: coveralls
5 changes: 1 addition & 4 deletions setup.py
Expand Up @@ -33,9 +33,6 @@ def requirements(name):
install_requires = requirements("dev/requirements.txt")[0]
tests_require = requirements("dev/requirements-test.txt")[0]

if sys.version_info < (3, 7):
install_requires.append("dataclasses")


if sys.version_info < (3, 8):
install_requires.append("cached-property")
Expand All @@ -52,7 +49,7 @@ def requirements(name):
author_email="luca@quantmind.com",
maintainer_email="luca@quantmind.com",
url="https://github.com/quantmind/aio-openapi",
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=install_requires,
tests_require=tests_require,
include_package_data=True,
Expand Down

0 comments on commit 3e50270

Please sign in to comment.