- 17 Jun, 2021 1 commit
-
-
Aaron Gokaslan committed
-
- 08 Jun, 2021 1 commit
-
-
* Add const T to docstring generation. * Change order. * See if existing test triggers for a const type. * Add tests. * Fix test. * Remove experiment. * Reformat. * More tests, checks run. * Adding `test_fmt_desc_` prefix to new test functions. * Using pytest.mark.parametrize to 1. condense test; 2. exercise all functions even if one fails; 3. be less platform-specific (e.g. C++ float is not necessarily float32). Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Jack S. Hale committed
-
- 27 May, 2021 3 commits
-
-
Adjusting valgrind suppression for pypocketfft to resolve systematic failures that started to appear on 2020-05-27. (#3022)
Ralf W. Grosse-Kunstleve committed -
* Set visibility of exceptions to default. Co-authored-by: XZiar <czktc2007@gmail.com> * add test * update docs * Skip failed test.
Yichen committed -
dependabot[bot] committed
-
- 14 May, 2021 2 commits
-
-
dependabot[bot] committed
-
dependabot[bot] committed
-
- 06 May, 2021 2 commits
-
-
test_call_policies: Explicitly check free-functions and static methods
Eric Cousineau committed -
Akira Kawata committed
-
- 04 May, 2021 1 commit
-
-
* Crash when printing Unicode to redirected cout Add failing tests * Fix Unicode crashes redirected cout * pythonbuf::utf8_remainder check end iterator * Remove trailing whitespace and formatting iostream * Avoid buffer overflow if ostream redirect races This doesn't solve the actual race, but at least it now has a much lower probability of reading past the end of the buffer even when data races do occur.
Pieter P committed
-
- 22 Apr, 2021 1 commit
-
-
Henry Schreiner committed
-
- 21 Apr, 2021 2 commits
-
-
Bumps [pre-commit/action](https://github.com/pre-commit/action) from v2.0.2 to v2.0.3. - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v2.0.2...9b88afc9cd57fd75b655d5c71bd38146d07135fe) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] committed -
Henry Schreiner committed
-
- 19 Apr, 2021 1 commit
-
-
When the user defines _GLIBCXX_USE_CXX11_ABI=0 to force the pre-c++11 ABI, numpy.h assumes that is_trivially_copyable is available. It is not necessarily the case. This patch uses clang's feature detection instead. The workaround is for certain libstdc++ versions, so the test should target these particular versions.
mvoelkle-cern committed
-
- 15 Apr, 2021 1 commit
-
-
Henry Schreiner committed
-
- 14 Apr, 2021 1 commit
-
-
* correcting Werror for Intel * adding ward for Intel * adding wards for intel * another ward for Intel * missed one intel ward * exact match for intel compiler * removing inline limits * disable warnings about inline limits * formatter suggestion * more indent * hopefully make formatter happy * addressed review * fix && * Update tests/CMakeLists.txt Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Philipp Bucher committed
-
- 13 Apr, 2021 1 commit
-
-
* Add a failure test for overloaded functions * Allow function pointer extraction from overloaded functions
Tamaki Nishino committed
-
- 10 Apr, 2021 1 commit
-
-
* chore: add myself to CODEOWNERS This will ensure I get notified about pull requests where these files change. * Update .github/CODEOWNERS
Henry Schreiner committed
-
- 06 Apr, 2021 2 commits
-
-
Weiming Zhao committed
-
dependabot[bot] committed
-
- 03 Apr, 2021 1 commit
-
-
* Adding PyGILState_Check() in object_api<>::operator(). * Enabling PyGILState_Check() for Python >= 3.6 only. Possibly, this explains why PyGILState_Check() cannot safely be used with Python 3.4 and 3.5: https://github.com/python/cpython/pull/10267#issuecomment-434881587 * Adding simple micro benchmark. * Reducing test time to minimum (purely for coverage, not for accurate results). * Fixing silly oversight. * Minor code organization improvement in test. * Adding example runtimes. * Removing capsys (just run with `-k test_callback_num_times -s` and using `.format()`.
Ralf W. Grosse-Kunstleve committed
-
- 02 Apr, 2021 4 commits
-
-
env: Add surrogate for pytest.deprecated_call for ptyest<3.9
Eric Cousineau committed -
* Pybind11Extension add the "/EHsc /bigobj /std:c++14" flags on Windows. This is good for Visual C++ but not for Mingw. * According https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-python2/0410-MINGW-build-extensions-with-GCC.patch sysconfig.get_platform() is the way to check for a Mingw64
Jerome Robert committed -
Robert Haschke committed
-
JYX committed
-
- 09 Mar, 2021 1 commit
-
-
* Adding suppression for pypocketfft. * Generalize existing pypocketfft Valgrind suppression Co-authored-by: Yannick Jadoul <yannick.jadoul@belgacom.net>
Ralf W. Grosse-Kunstleve committed
-
- 08 Mar, 2021 1 commit
-
-
Use correct duration representation when casting from datetime.timdelta to std::chrono::duration (#2870) * Use correct duration representation when casting from datetime.timdelta to std::chrono::duration * When asserting datetime/timedelta/date/time we can equality-compare whole objects
Boris Staletic committed
-
- 05 Mar, 2021 1 commit
-
-
Shuffling code in test_multiple_inheritance.cpp to separate struct/class definitions from bindings code. (#2890)
Ralf W. Grosse-Kunstleve committed
-
- 25 Feb, 2021 2 commits
-
-
Tom de Geus committed
-
Shuffling code in test_smart_ptr.cpp to separate struct/class definitions from bindings code. Back-porting from smart_holder branch, to minimize diffs and potential for merge conflicts. (#2875) Thanks Wenzel!
Ralf W. Grosse-Kunstleve committed
-
- 23 Feb, 2021 3 commits
-
-
* [dtype]: add type() method to access type attribute of PyArray_Descr (eq. to dtype.char in Python) * [dtype] change type() name method to char_() to be compliant with Python numpy interface * [dtype] fix by pre-commit * [dtype] Change comments and solutions format for test * Clarify documentation and move note about dtype.char vs PyArray_Descr::type to a plain, non-doxygen comment * Fix and extend tests * Fix the supposedly fixed tests * Fix the fixed tests again Co-authored-by: Bertrand MICHEL <bertrand.michel@onera.fr> Co-authored-by: Yannick Jadoul <yannick.jadoul@belgacom.net>
Bertrand MICHEL committed -
Dustin Spicuzza committed
-
* Splitting out detail/type_caster_base.h from cast.h. * Include cleanup guided by include-what-you-use 0.12 based on clang version 9.0.1-11.
Ralf W. Grosse-Kunstleve committed
-
- 20 Feb, 2021 1 commit
-
-
jakobjw committed
-
- 17 Feb, 2021 1 commit
-
-
dependabot[bot] committed
-
- 14 Feb, 2021 1 commit
-
-
* Add initial implementation * Add few more methods * Add tests * Fix a typo * Use std::string constructor which takes size * Fix implicit sign conversion error * Add size method and test * Remove implicit conversion * Fix bytearray constructors and operator std::string() * Make implicit bytearray constructor explicit * Rerun tests * Add null check * Rerun tests * Rerun tests - 2 * Remove NULL check
Vikram Pal committed
-
- 12 Feb, 2021 1 commit
-
-
Co-authored-by: OnlineCop <onlinecop@gmail.com>
OnlineCop committed
-
- 09 Feb, 2021 1 commit
-
-
Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from v1.4.1 to v1.4.2. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.4.1...27b31702a0e7fc50959f5ad993c78deac1bdfc29) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] committed
-
- 08 Feb, 2021 2 commits
-
-
On Windows, clang-cl does not understand /MP. ``` clang-cl: warning: argument unused during compilation: '/MP' [-Wunused-command-line-argument] ``` with Clang 10.0.0
Axel Huebl committed -
Karthik Nishanth committed
-