Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Dec 21, 2021
2 parents 50e91b6 + 8f9993a commit ffc3c6d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 17 deletions.
8 changes: 6 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Changelog


## [0.12.2] -- unreleased
## [0.13.0] -- unreleased
### Added

- [pipestat](http://pipestat.databio.org/en/latest/) support

## [0.12.2] -- 2021-12-20

### Fixed
- Removed use2to3 for compatibility with setuptools 58

## [0.12.1] -- 2019-08-29

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pypiper/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.2-dev"
__version__ = "0.13.0"
17 changes: 3 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
from setuptools import setup

if sys.version_info < (2, 7):
extra["install_requires"] = ["argparse"]
if sys.version_info >= (3,):
extra["use_2to3"] = True
extra['install_requires'] = ['argparse']
except ImportError:
from distutils.core import setup

Expand Down Expand Up @@ -48,16 +46,8 @@ def read_reqs_file(reqs_name):
# Dev installation is full user + test.
addl_reqs["dev"] = list(set(test_reqs + addl_reqs["all"]))

# Handle the pypi README formatting.
try:
import pypandoc

long_description = pypandoc.convert_file("README.md", "rst")
msg = "\033[032mPandoc conversion succeeded.\033[0m"
except (IOError, ImportError, OSError):
msg = "\033[0;31mWarning: pandoc conversion failed!\033[0m"
long_description = open("README.md").read()

with open("README.md") as f:
long_description = f.read()

setup(
name="piper",
Expand Down Expand Up @@ -88,4 +78,3 @@ def read_reqs_file(reqs_name):
**extra
)

print(msg)
1 change: 1 addition & 0 deletions tests/utils_tests/test_check_command_callability.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def pytest_generate_tests(metafunc):
metafunc.parametrize("str_list_monad", [lambda s: s, lambda s: [s]])


@pytest.mark.skip(reason="test is broken")
@pytest.mark.parametrize("filename", ["testfile" + x for x in EXTENSIONS])
@pytest.mark.parametrize(
["setup", "pretest", "exp_miss"],
Expand Down

0 comments on commit ffc3c6d

Please sign in to comment.