Skip to content

Commit

Permalink
also support python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Kinkade committed Sep 10, 2014
1 parent af74886 commit 5c1212a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion nose_selenv.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import os
from nose.plugins import Plugin
from ConfigParser import ConfigParser
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser

def set_options_from_config(config):
if config.has_option('SELENIUM', 'ENVIRONMENT'):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='nose_selenv',
version='0.4',
version='1.0',
author='Gregg Lamb',
author_email='glamb@wetpaint-inc.com',
url='https://github.com/glamb/nose_selenv',
Expand All @@ -17,7 +17,7 @@
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities'],
Expand Down

0 comments on commit 5c1212a

Please sign in to comment.