-
-
Notifications
You must be signed in to change notification settings - Fork 410
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 #1094 from nschloe/include-tests
Include tests in distribution
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 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 |
---|---|---|
|
@@ -20,3 +20,5 @@ dist/ | |
doc/_build/ | ||
*.egg-info/ | ||
.pytest_cache/ | ||
.coverage | ||
.tox/ |
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,5 +1,6 @@ | ||
include LICENSE.txt | ||
# Don't recursively include everything that's in test; there may be cruft files, | ||
# left-overs from experiments etc. | ||
include tests/helpers.py | ||
recursive-include tests/meshes * | ||
include tests/*.py | ||
include tests/meshes/ | ||
# recursive-include tests/meshes * |
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,6 @@ | ||
[metadata] | ||
name = meshio | ||
version = 4.4.1 | ||
version = 4.4.2 | ||
author = Nico Schlömer et al. | ||
author_email = [email protected] | ||
description = I/O for many mesh formats | ||
|