Skip to content

Commit

Permalink
Refs #37 exclude test directory from release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Apr 10, 2018
1 parent 1a0c091 commit 6229296
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@
History
=======

0.2.0 ()
--------
0.2.2 (2018-04-10)
------------------
* Exclude tests directory from release

0.2.1 (2018-04-10)
------------------
* Include subdirectories of qef in release

0.2.0 (2018-04-09)
------------------
* Notebook for global fitting (PR #40)
* Load Mantid Nexus data (PR #38)
* Tabulated resolution model (PR #43)
Expand Down
2 changes: 1 addition & 1 deletion qef/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

__author__ = """Jose Borreguero"""
__email__ = '[email protected]'
__version__ = '0.2.1'
__version__ = '0.2.2'

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@

setup(
name='qef',
version='0.2.1',
version='0.2.2',
description="quasielastic fitting",
long_description=readme + '\n\n' + history,
author="Jose Borreguero",
author_email='[email protected]',
url='https://github.com/jmborr/qef',
#packages=find_packages(include=['qef']),
packages=find_packages(),
packages=find_packages(exclude='tests'),
include_package_data=True,
install_requires=requirements,
license="MIT license",
Expand Down

0 comments on commit 6229296

Please sign in to comment.