Skip to content

Commit ca32e60

Browse files
committed
Version 0.1.2
1 parent fce6d52 commit ca32e60

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

Diff for: README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
=========
2-
PIP Chill
3-
=========
1+
=============================================================
2+
PIP Chill - Make requirements will only the packages you need
3+
=============================================================
44

55

66
.. image:: https://img.shields.io/pypi/v/pip_chill.svg

Diff for: pip_chill/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
__author__ = 'Ricardo Bánffy'
44
__email__ = '[email protected]'
5-
__version__ = '0.1.0'
5+
__version__ = '0.1.2'
6+
7+
from .pip_chill import chill

Diff for: requirements_dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ flake8
66
tox
77
coverage
88
Sphinx
9+
'

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name='pip-chill',
22-
version='0.1.0',
22+
version='0.1.2',
2323
description="Like `pip freeze` but lists only the packages that are not "
2424
"dependencies of installed packages.",
2525
long_description=readme + '\n\n' + history,

Diff for: tests/test_pip_chill.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import sys
1313
import unittest
14-
from contextlib import contextmanager
14+
# from contextlib import contextmanager
1515
from click.testing import CliRunner
1616

1717
from pip_chill import pip_chill

0 commit comments

Comments
 (0)