You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/10/30 20:57:11 UTC

[incubator-datasketches-cpp] branch req_sketch updated (473bd7e -> 25e4d19)

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a change to branch req_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git.


    from 473bd7e  split into separate files
     new 725df74  Update build_cmake.yml
     new a0ec1a3  Update build_cmake.yml
     new e8ecc84  bump pybind11 to one with a workaround for a pythong 3.9 issue
     new 25e4d19  Update build_cmake.yml

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build_cmake.yml | 6 +++---
 python/pybind11                   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-cpp] 01/04: Update build_cmake.yml

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch req_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git

commit 725df7479e99da9bb7014a9d4270c8768e5a3b46
Author: Jon Malkin <78...@users.noreply.github.com>
AuthorDate: Mon Oct 26 14:15:00 2020 -0700

    Update build_cmake.yml
    
    check if setup-python@v2 improved 3.8 vs 3.9 issues
---
 .github/workflows/build_cmake.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index 742a712..f9f2d97 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -50,7 +50,7 @@ jobs:
       - name: Run C++ tests
         run: cmake --build build --config Release --target ${{ matrix.config.test_target }}
       - name: Set up Python 3.x
-        uses: actions/setup-python@v1
+        uses: actions/setup-python@v2
         with:
           python-version: '3.x' # grabs latest minor version of python3
       - name: Install Python dependencies


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-cpp] 03/04: bump pybind11 to one with a workaround for a pythong 3.9 issue

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch req_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git

commit e8ecc846d628b03b2968a4a9301ce3eb7a3dfaa3
Author: Jon Malkin <jm...@users.noreply.github.com>
AuthorDate: Mon Oct 26 16:21:59 2020 -0700

    bump pybind11 to one with a workaround for a pythong 3.9 issue
---
 python/pybind11 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pybind11 b/python/pybind11
index 4f72ef8..59a2ac2 160000
--- a/python/pybind11
+++ b/python/pybind11
@@ -1 +1 @@
-Subproject commit 4f72ef846fe8453596230ac285eeaa0ce3278bb4
+Subproject commit 59a2ac2745d8a57ac94c6accced73620d59fb844


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-cpp] 02/04: Update build_cmake.yml

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch req_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git

commit a0ec1a336f1f38eaeda5ba466148cfc9943e4371
Author: Jon Malkin <78...@users.noreply.github.com>
AuthorDate: Mon Oct 26 15:17:38 2020 -0700

    Update build_cmake.yml
    
    invoke tox using the same python as for compilation
---
 .github/workflows/build_cmake.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index f9f2d97..12ab56a 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -56,4 +56,4 @@ jobs:
       - name: Install Python dependencies
         run: python -m pip install --upgrade pip setuptools wheel numpy tox
       - name: Build and run Python tests
-        run: tox
+        run: python -m tox


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-cpp] 04/04: Update build_cmake.yml

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch req_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git

commit 25e4d1936427d9641982b1ea17aee1a53eacde51
Author: Jon Malkin <78...@users.noreply.github.com>
AuthorDate: Mon Oct 26 16:43:02 2020 -0700

    Update build_cmake.yml
    
    Fix python 3.8 for now rather than "latest"
    
    Should perhaps consider testing multiple versions eventually? Don't need to re-run all the C++ tests from scratch for each python version though.
---
 .github/workflows/build_cmake.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index 12ab56a..c1470de 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -52,7 +52,7 @@ jobs:
       - name: Set up Python 3.x
         uses: actions/setup-python@v2
         with:
-          python-version: '3.x' # grabs latest minor version of python3
+          python-version: '3.8' # 3.x grabs latest minor version of python3, but 3.9 not fully supported yet
       - name: Install Python dependencies
         run: python -m pip install --upgrade pip setuptools wheel numpy tox
       - name: Build and run Python tests


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org