-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from tzussman/vgerror-cleanup
vgerror cleanup and version bump
- Loading branch information
Showing
8 changed files
with
544 additions
and
550 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ name = "valparse" | |
authors = [{name = "Tal Zussman", email = "[email protected]"}] | ||
description="Package to parse Valgrind XML files." | ||
readme = "README.md" | ||
version = "0.1" | ||
version = "0.2.0" | ||
requires-python = ">=3.7" | ||
|
||
dependencies = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setuptools.setup( | ||
name="valparse", | ||
version="0.1", | ||
version="0.2.0", | ||
author="valparse contributors", | ||
author_email="[email protected]", | ||
description="Package to parse Valgrind XML files.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
from . import parser # noqa: F401 | ||
from .parser import Parser # noqa: F401 | ||
from . import vgerror # noqa: F401 | ||
from . import util # noqa: F401 | ||
from .valparse import * # noqa: F401, F403 | ||
|
||
__version__ = "0.1.0" | ||
__version__ = "0.2.0" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.