From 225122ef901db3b85a635377e48491f293775757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Schl=C3=B6mer?= Date: Sun, 3 Oct 2021 23:04:19 +0200 Subject: [PATCH 1/2] require python 3.7 --- MANIFEST.in | 4 ++-- setup.cfg | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0163cb5..a5b825f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -10,5 +10,5 @@ include src/primitives.hpp include src/remesh_surface.hpp include src/sizing_field.hpp -include test/helpers.py -recursive-include test/meshes * +include tests/helpers.py +recursive-include tests/meshes * diff --git a/setup.cfg b/setup.cfg index 78389b7..64e8252 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,10 +17,10 @@ classifiers = License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Operating System :: OS Independent Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Scientific/Engineering Topic :: Scientific/Engineering :: Mathematics Topic :: Scientific/Engineering :: Physics @@ -39,8 +39,8 @@ install_requires = importlib_metadata;python_version<"3.8" meshio >= 4.0.0, < 6.0.0 numpy -python_requires = >=3.6 +python_requires = >=3.7 [options.entry_points] console_scripts = - pygalmesh= pygalmesh._cli:cli + pygalmesh = pygalmesh._cli:cli From 181e2cb79cd97d644c08bb865b2bd9dca2f7b6b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Schl=C3=B6mer?= Date: Sun, 3 Oct 2021 23:04:49 +0200 Subject: [PATCH 2/2] version bump --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 64e8252..6f18d32 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pygalmesh -version = 0.10.0 +version = 0.10.1 author = Nico Schlömer author_email = nico.schloemer@gmail.com description = Python frontend to CGAL's mesh generation capabilities