Skip to content

Commit

Permalink
Run tests on Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
D3X authored and gotcha committed Sep 9, 2021
1 parent 04c99ff commit fc83b4f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev"
- "3.9"
- "3.10-dev"
- "nightly"
- "pypy"
matrix:
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause

from setuptools import setup, find_packages
from sys import version_info
import re
import io
import re
from sys import version_info

from setuptools import find_packages, setup

version = re.search(
r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]', # It excludes inline comment too
Expand Down Expand Up @@ -36,6 +37,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
Expand Down
10 changes: 0 additions & 10 deletions tox.ini

This file was deleted.

0 comments on commit fc83b4f

Please sign in to comment.