Skip to content

Commit

Permalink
Merge pull request #160 from nschloe/fix-manifest
Browse files Browse the repository at this point in the history
Fix manifest
  • Loading branch information
nschloe authored Oct 3, 2021
2 parents df23a53 + 75d6ad6 commit e93f330
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
include src/domain.hpp
include src/generate.hpp
include src/generate_2d.hpp
include src/generate_from_inr.hpp
include src/generate_from_off.hpp
include src/generate_periodic.hpp
include src/generate.hpp
include src/generate_2d.hpp
include src/generate_surface_mesh.hpp
include src/polygon2d.hpp
include src/primitives.hpp
include src/remesh_surface.hpp
include src/sizing_field.hpp

include tests/helpers.py
include tests/*.py
recursive-include tests/meshes *
6 changes: 2 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ upload: clean
publish: tag upload

clean:
@find . | grep -E "(__pycache__|\.pyc|\.pyo$\)" | xargs rm -rf
@rm -rf build/*
@rm -rf pygalmesh.egg-info/
@rm -rf dist/
@find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
@rm -rf src/*.egg-info/ build/ dist/ .tox/ pygalmesh.egg-info//

format:
isort .
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pygalmesh
version = 0.10.1
version = 0.10.2
author = Nico Schlömer
author_email = [email protected]
description = Python frontend to CGAL's mesh generation capabilities
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ deps =
pytest
pytest-codeblocks
pytest-cov
pytest-randomly
commands =
pytest {posargs} --codeblocks

0 comments on commit e93f330

Please sign in to comment.