Skip to content

Commit

Permalink
bumping version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Miroslav Shubernetskiy committed Jul 28, 2017
1 parent 1d3817e commit 24bcf7a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

0.2.1 (2017-07-28)
~~~~~~~~~~~~~~~~~~

* Excluding tests from being installed

0.2.0 (2017-05-11)
~~~~~~~~~~~~~~~~~~

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ clean-test-all: clean-test

lint: ## check style with flake8
flake8 pycontext tests
importanize --ci

test: ## run tests quickly with the default Python
nosetests ${NOSE_FLAGS} tests/ pycontext/
Expand Down
3 changes: 1 addition & 2 deletions pycontext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@


__author__ = 'Miroslav Shubernetskiy'
__author_email__ = '[email protected]'
__version__ = '0.2'
__version__ = '0.2.1'
__description__ = 'Python dict with stacked context data'
1 change: 0 additions & 1 deletion pycontext/context.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

import copy
from collections import Mapping, deque
from itertools import chain
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import find_packages, setup

from pycontext import __author__, __author_email__, __description__, __version__
from pycontext import __author__, __description__, __version__


def read(fname):
Expand All @@ -31,12 +31,11 @@ def read(fname):
name='py-context',
version=__version__,
author=__author__,
author_email=__author_email__,
description=__description__,
long_description='\n\n'.join([readme, history, authors, licence]),
url='https://github.com/dealertrack/py-context',
license='MIT',
packages=find_packages(exclude=['test', 'test.*']),
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=requirements,
test_suite='tests',
tests_require=test_requirements,
Expand Down

0 comments on commit 24bcf7a

Please sign in to comment.