Skip to content

Commit e93f330

Browse files
authored
Merge pull request #160 from nschloe/fix-manifest
Fix manifest
2 parents df23a53 + 75d6ad6 commit e93f330

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

MANIFEST.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
include src/domain.hpp
2+
include src/generate.hpp
3+
include src/generate_2d.hpp
24
include src/generate_from_inr.hpp
35
include src/generate_from_off.hpp
46
include src/generate_periodic.hpp
5-
include src/generate.hpp
6-
include src/generate_2d.hpp
77
include src/generate_surface_mesh.hpp
88
include src/polygon2d.hpp
99
include src/primitives.hpp
1010
include src/remesh_surface.hpp
1111
include src/sizing_field.hpp
1212

13-
include tests/helpers.py
13+
include tests/*.py
1414
recursive-include tests/meshes *

justfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ upload: clean
1515
publish: tag upload
1616

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

2321
format:
2422
isort .

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pygalmesh
3-
version = 0.10.1
3+
version = 0.10.2
44
author = Nico Schlömer
55
author_email = nico.schloemer@gmail.com
66
description = Python frontend to CGAL's mesh generation capabilities

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ deps =
77
pytest
88
pytest-codeblocks
99
pytest-cov
10+
pytest-randomly
1011
commands =
1112
pytest {posargs} --codeblocks

0 commit comments

Comments
 (0)