From 1c9c79ac2b0bcaca18de5e9261cbd8df1fd4d8bc Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sun, 29 Mar 2020 10:47:09 +0100 Subject: [PATCH 1/2] uni --- .github/workflows/tests.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 736794a..96d702b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,6 +1,10 @@ name: Unittests -on: [pull_request] +on: + pull_request: + push: + branches: + - master jobs: unittests: From c237151ded7b002304029629e283f19e9eccdf8b Mon Sep 17 00:00:00 2001 From: Nicolas Date: Fri, 3 Apr 2020 08:34:58 +0100 Subject: [PATCH 2/2] Fix packaging --- MANIFEST.in | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a5782a5 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include README.md +include LICENSE + +recursive-exclude test * +recursive-include cpu * +recursive-include cuda * \ No newline at end of file diff --git a/setup.py b/setup.py index a6a4ab6..23a1420 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ requirements = ["torch>=1.1.0"] url = 'https://github.com/nicolas-chaulet/torch-points-kernels' -__version__="0.5.1" +__version__="0.5.2" setup( name="torch-points-kernels", version=__version__,