-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from dosas/feature/issue-16
Use fissix in order to support newer python versions
- Loading branch information
Showing
7 changed files
with
17 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "1.0.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
[bumpversion] | ||
files = setup.py nose2pytest/script.py | ||
|
||
files = setup.py nose2pytest/script.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
name='nose2pytest', | ||
version='1.0.10', | ||
packages=['nose2pytest'], | ||
# py_modules=['assert_tools', 'nose2pytest'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'nose2pytest = nose2pytest.script:main', | ||
|
@@ -18,8 +17,10 @@ | |
author_email='[email protected]', | ||
description='Convert nose.tools.assert_ calls found in your Nose test modules into raw asserts for pytest', | ||
keywords='nose to pytest conversion', | ||
|
||
python_requires='>=3.5', | ||
install_requires=[ | ||
'fissix', | ||
], | ||
python_requires='>=3.6', | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
|
@@ -35,9 +36,6 @@ | |
'License :: OSI Approved :: BSD License', | ||
|
||
# Specify the Python versions you support here. | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py{35, 36, 37, 38, 39, 310, 311} | ||
envlist = py{36, 37, 38, 39, 310, 311} | ||
|
||
[testenv] | ||
deps = | ||
|