This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch tox_fixes in repository https://gitbox.apache.org/repos/asf/datasketches-python.git
commit 647df944df636553333d231a77132a07fbcc4563 Author: Jon Malkin <[email protected]> AuthorDate: Fri Sep 1 18:30:06 2023 -0700 Remove pycache files, add manifest that should fix tox --- MANIFEST.in | 26 +++++++++++++++++++++ .../__pycache__/DensityWrapper.cpython-310.pyc | Bin 3547 -> 0 bytes .../__pycache__/KernelFunction.cpython-310.pyc | Bin 878 -> 0 bytes datasketches/__pycache__/PySerDe.cpython-310.pyc | Bin 3152 -> 0 bytes datasketches/__pycache__/PySerDe.cpython-39.pyc | Bin 3438 -> 0 bytes .../__pycache__/TuplePolicy.cpython-310.pyc | Bin 2164 -> 0 bytes .../__pycache__/TupleWrapper.cpython-310.pyc | Bin 10650 -> 0 bytes datasketches/__pycache__/__init__.cpython-310.pyc | Bin 489 -> 0 bytes datasketches/__pycache__/__init__.cpython-39.pyc | Bin 239 -> 0 bytes setup.py | 2 +- 10 files changed, 27 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2fa7f89 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,26 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + +# build/config files +include version.cfg.in +include CMakeLists.txt + +# content files +include src/* +include include/* +include tests/* diff --git a/datasketches/__pycache__/DensityWrapper.cpython-310.pyc b/datasketches/__pycache__/DensityWrapper.cpython-310.pyc deleted file mode 100644 index 77f41ec..0000000 Binary files a/datasketches/__pycache__/DensityWrapper.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/KernelFunction.cpython-310.pyc b/datasketches/__pycache__/KernelFunction.cpython-310.pyc deleted file mode 100644 index ee9a219..0000000 Binary files a/datasketches/__pycache__/KernelFunction.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/PySerDe.cpython-310.pyc b/datasketches/__pycache__/PySerDe.cpython-310.pyc deleted file mode 100644 index f839c0d..0000000 Binary files a/datasketches/__pycache__/PySerDe.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/PySerDe.cpython-39.pyc b/datasketches/__pycache__/PySerDe.cpython-39.pyc deleted file mode 100644 index a3d9089..0000000 Binary files a/datasketches/__pycache__/PySerDe.cpython-39.pyc and /dev/null differ diff --git a/datasketches/__pycache__/TuplePolicy.cpython-310.pyc b/datasketches/__pycache__/TuplePolicy.cpython-310.pyc deleted file mode 100644 index 0037f6b..0000000 Binary files a/datasketches/__pycache__/TuplePolicy.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/TupleWrapper.cpython-310.pyc b/datasketches/__pycache__/TupleWrapper.cpython-310.pyc deleted file mode 100644 index da8115b..0000000 Binary files a/datasketches/__pycache__/TupleWrapper.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/__init__.cpython-310.pyc b/datasketches/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f225b8d..0000000 Binary files a/datasketches/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/datasketches/__pycache__/__init__.cpython-39.pyc b/datasketches/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 16f16b3..0000000 Binary files a/datasketches/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/setup.py b/setup.py index 98abb4e..6ed14c3 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ setup( packages=find_packages(exclude=['src','include','*tests*']), # src not needed if only the .so package_dir={'':'.'}, # may need to add all source paths for sdist packages w/o MANIFEST.in - ext_modules=[CMakeExtension('datasketches')], + ext_modules=[CMakeExtension('datasketches','.')], cmdclass={'build_ext': CMakeBuild}, install_requires=['numpy'], zip_safe=False --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
