Skip to content

Commit

Permalink
Upgrade Python version.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmabus committed Mar 3, 2022
1 parent 4fa3a47 commit d9bc83e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
script:
- "python setup.py test"
before_install:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import os
import sys

from setuptools import setup, find_packages
from setuptools import find_packages, setup

needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
Expand All @@ -67,7 +67,7 @@
platforms=['any'],
license='MIT',
packages=find_packages(),
python_requires='>=3.6, <4',
python_requires='>=3.7, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down

0 comments on commit d9bc83e

Please sign in to comment.