Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewturk committed Dec 17, 2020
1 parent a6eee77 commit fe33d48
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
24 changes: 11 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

Expand All @@ -15,23 +15,21 @@ replace = __version__ = "{new_version}"
universal = 1

[flake8]
max-line-length=88
max-line-length = 88
exclude = docs,
*/__init__.py
*/__init__.py
ignore = E203, # Whitespace before ':' (black compatibility)
E231, # Missing whitespace after ',', ';', or ':'
E266, # Too many leading '#' for block comment
E302, # Expected 2 blank lines, found 0
E306, # Expected 1 blank line before a nested definition
E741, # Do not use variables named 'I', 'O', or 'l'
W503, # Line break occurred before a binary operator (black compatibility)
W605, # Invalid escape sequence 'x'
B302, # this is a python 3 compatibility warning, not relevant since don't support python 2 anymore
E231, # Missing whitespace after ',', ';', or ':'
E266, # Too many leading '#' for block comment
E302, # Expected 2 blank lines, found 0
E306, # Expected 1 blank line before a nested definition
E741, # Do not use variables named 'I', 'O', or 'l'
W503, # Line break occurred before a binary operator (black compatibility)
W605, # Invalid escape sequence 'x'
B302, # this is a python 3 compatibility warning, not relevant since don't support python 2 anymore

[aliases]
# Define setup.py command aliases here
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/data-exp-lab/yt_idv",
version="0.1.0",
version="0.2.0",
zip_safe=False,
ext_modules=cythonize("yt_idv/*.pyx"),
include_dirs=[numpy.get_include()],
Expand Down
2 changes: 1 addition & 1 deletion yt_idv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Matthew Turk"""
__email__ = "[email protected]"
__version__ = "0.1.0"
__version__ = "0.2.0"

import os

Expand Down

0 comments on commit fe33d48

Please sign in to comment.