Skip to content

Commit

Permalink
Merge branch 'goodmami-fix-issue-13'
Browse files Browse the repository at this point in the history
  • Loading branch information
philexander committed Sep 18, 2021
2 parents f9dc43e + 0fbb5e9 commit 2ead50d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
13 changes: 4 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Topic :: Documentation',
'Topic :: Utilities',
]
Expand All @@ -36,11 +37,6 @@
from setuptools import setup, find_packages
import sys

# Use 2to3 for Python 3 without warnings in Python 2
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True

setup(
name=NAME,
version=VERSION,
Expand All @@ -58,5 +54,4 @@
include_package_data=True,
install_requires=REQUIRES,
namespace_packages=['sphinxcontrib'],
**extra
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# To perform those tests, install `tox` and run "tox" from this directory.

[tox]
envlist = py27, py34
envlist = py36, py39

[testenv]
changedir=doc
Expand Down

0 comments on commit 2ead50d

Please sign in to comment.