Skip to content

Commit

Permalink
Bump version: 2.4.1 → 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jun 20, 2015
1 parent b2b1cbe commit 4523a90
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
year = u'2014-2015'
author = u'Ionel Cristian M\u0103rie\u0219'
copyright = '{0}, {1}'.format(year, author)
version = release = u'2.4.1'
version = release = u'2.5.0'
import sphinx_py3doc_enhanced_theme
html_theme = "sphinx_py3doc_enhanced_theme"
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]
Expand Down
69 changes: 35 additions & 34 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[bumpversion]
current_version = 2.5.0
files = setup.py docs/conf.py src/pytest_benchmark/__init__.py
commit = True
tag = True

[bdist_wheel]
universal = 1

Expand All @@ -8,40 +14,35 @@ release = register clean --all sdist bdist_wheel
max-line-length = 140
exclude = tests/*,*/migrations/*,*/south_migrations/*

[bumpversion]
current_version = 2.4.1
files = setup.py docs/conf.py src/pytest_benchmark/__init__.py
commit = True
tag = True

[pytest]
norecursedirs =
.git
.tox
.env
dist
build
south_migrations
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfs
--strict
--ignore docs/conf.py
--ignore setup.py
--ignore bootstrap.py
--ignore src/pytest_benchmark/pep418.py
--doctest-modules
--doctest-glob \*.rst
--tb native
--cov-report term-missing
norecursedirs =
.git
.tox
.env
dist
build
south_migrations
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfs
--strict
--ignore docs/conf.py
--ignore setup.py
--ignore bootstrap.py
--ignore src/pytest_benchmark/pep418.py
--doctest-modules
--doctest-glob \*.rst
--tb native
--cov-report term-missing

[isort]
force_single_line=True
line_length=120
known_first_party=pytest_benchmark
default_section=THIRDPARTY
forced_separate=test_pytest_benchmark
force_single_line = True
line_length = 120
known_first_party = pytest_benchmark
default_section = THIRDPARTY
forced_separate = test_pytest_benchmark

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def read(*names, **kwargs):

setup(
name="pytest-benchmark",
version="2.4.1",
version="2.5.0",
license="BSD",
description="py.test fixture for benchmarking code",
long_description="%s\n%s" % (read("README.rst"), re.sub(":obj:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst"))),
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_benchmark/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.4.1"
__version__ = "2.5.0"
Expand Down

0 comments on commit 4523a90

Please sign in to comment.