Skip to content

Upgraded to Gremlin 3.5.1#196

Merged
lvca merged 1 commit into
mainfrom
upgrade-gremlin-3.5.1-issue-195
Nov 4, 2021
Merged

Upgraded to Gremlin 3.5.1#196
lvca merged 1 commit into
mainfrom
upgrade-gremlin-3.5.1-issue-195

Conversation

@lvca

@lvca lvca commented Nov 4, 2021

Copy link
Copy Markdown
Member

Related issues
#195

@lvca lvca self-assigned this Nov 4, 2021
@lvca lvca added the enhancement New feature or request label Nov 4, 2021
@lvca lvca added this to the 21.11.1 milestone Nov 4, 2021
@lvca lvca linked an issue Nov 4, 2021 that may be closed by this pull request
@lvca lvca merged commit ef7ba86 into main Nov 4, 2021
@lvca lvca deleted the upgrade-gremlin-3.5.1-issue-195 branch November 4, 2021 19:28
mergify Bot added a commit that referenced this pull request Apr 13, 2026
…in /e2e-python [skip ci]

Updates the requirements on [pytest-check](https://github.com/okken/pytest-check) to permit the latest version.
Release notes

*Sourced from [pytest-check's releases](https://github.com/okken/pytest-check/releases).*

> 2.8.0
> -----
>
> * Support Request [#122: Feature proposal: Capability to mark checks as xfail](https://redirect.github.com/okken/pytest-check/issues/122)
> * Allow check helper functions, including `raises()`, to accept an `xfail` reason. A failing check can now produce an xfailed test result, while a passing check does not produce xpass unless the test is already marked with `@pytest.mark.xfail`.
> * (docs) Document `xfail` support for check helper functions in the README.


Changelog

*Sourced from [pytest-check's changelog](https://github.com/okken/pytest-check/blob/main/changelog.md).*

> [2.8.0] - 2026-Mar-22
> ---------------------
>
> ### Added
>
> * Support Request [#122: Feature proposal: Capability to mark checks as xfail](https://redirect.github.com/okken/pytest-check/issues/122)
> * Allow check helper functions, including `raises()`, to accept an `xfail` reason. A failing check can now produce an xfailed test result, while a passing check does not produce xpass unless the test is already marked with `@pytest.mark.xfail`.
> * (docs) Document `xfail` support for check helper functions in the README.
>
> [2.7.7] - 2026-Mar-20
> ---------------------
>
> ### Fixed
>
> * Allow CheckContextManager to catch any exception, not just AssertionError ([#198](https://redirect.github.com/okken/pytest-check/issues/198)).
>   Non-assertion exceptions (IndexError, KeyError, AttributeError, etc.) are now properly caught and reported as check failures.
>
> [2.7.6] - 2026-Mar-04
> ---------------------
>
> ### Fixed
>
> * (typing) Set comparison function types such that None is not allowed
>
> [2.7.5] - 2026-Mar-04
> ---------------------
>
> ### Changed
>
> * Passing `None` to comparison functions like `greater()`, `less()`, etc. used to raise an exception, which caused a test failure and stopped the test.
> * That's unexpected with a check function.
> * So now the check fails with a meaningful error message and continues with the rest of the test.
> * (typing) Allow numpy floats with comparison functions to pass mypy.
>
> [2.7.4] - 2026-Mar-03
> ---------------------
>
> ### Fixed
>
> * (typing) Allow mixed `int`/`float` arguments in strict mypy for comparison helpers by adding `float` numeric overloads for `greater()`, `greater_equal()`, `less()`, and `less_equal()` in `check_functions.py`.
>
> [2.7.3] - 2026-Mar-02
> ---------------------
>
> ### Added
>
> * Add `__init__.pyi` stub file for IDE intellisense (e.g. VSCode) and static type checkers.
> * Add PEP 561 `py.typed` marker so the package is recognized as typed.
> * (examples) Add `test_example_mypy.py` to validate `import pytest_check as check` with mypy.
>
> ### Fixed
>
> * Ignore dist-packages in pseudo stack trace - Fixes [#196](https://redirect.github.com/okken/pytest-check/issues/196) - Thanks [`@​siferati`](https://github.com/siferati)
> * (typing) Resolve remaining mypy errors for `import pytest_check as check` usage; internal adjustments in `check_functions.py`.

... (truncated)


Commits

* [`c356b52`](okken/pytest-check@c356b52) Add xfail support for check helper functions
* [`1c5add3`](okken/pytest-check@1c5add3) 2.7.7
* [`60d87c4`](okken/pytest-check@60d87c4) fix mypy issue
* [`b8ee598`](okken/pytest-check@b8ee598) fix [#198](https://redirect.github.com/okken/pytest-check/issues/198): Allow CheckContextManager to catch any exception
* [`108f139`](okken/pytest-check@108f139) mypy tweak
* [`16e79c9`](okken/pytest-check@16e79c9) don't allow None for comparisons
* [`4f6d1ea`](okken/pytest-check@4f6d1ea) type safe optional import
* [`9b0ec93`](okken/pytest-check@9b0ec93) allow type checking with numpy floats and comparision functions
* [`de69ee8`](okken/pytest-check@de69ee8) appropriate check fails with None passed to order comparisons
* [`0ce3cdb`](okken/pytest-check@0ce3cdb) one more mypy fix
* Additional commits viewable in [compare view](okken/pytest-check@2.5.0...2.8.0)
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…in /e2e-python [skip ci]

Updates the requirements on [pytest-check](https://github.com/okken/pytest-check) to permit the latest version.
Release notes

*Sourced from [pytest-check's releases](https://github.com/okken/pytest-check/releases).*

> 2.8.0
> -----
>
> * Support Request [ArcadeData#122: Feature proposal: Capability to mark checks as xfail](https://redirect.github.com/okken/pytest-check/issues/122)
> * Allow check helper functions, including `raises()`, to accept an `xfail` reason. A failing check can now produce an xfailed test result, while a passing check does not produce xpass unless the test is already marked with `@pytest.mark.xfail`.
> * (docs) Document `xfail` support for check helper functions in the README.


Changelog

*Sourced from [pytest-check's changelog](https://github.com/okken/pytest-check/blob/main/changelog.md).*

> [2.8.0] - 2026-Mar-22
> ---------------------
>
> ### Added
>
> * Support Request [ArcadeData#122: Feature proposal: Capability to mark checks as xfail](https://redirect.github.com/okken/pytest-check/issues/122)
> * Allow check helper functions, including `raises()`, to accept an `xfail` reason. A failing check can now produce an xfailed test result, while a passing check does not produce xpass unless the test is already marked with `@pytest.mark.xfail`.
> * (docs) Document `xfail` support for check helper functions in the README.
>
> [2.7.7] - 2026-Mar-20
> ---------------------
>
> ### Fixed
>
> * Allow CheckContextManager to catch any exception, not just AssertionError ([ArcadeData#198](https://redirect.github.com/okken/pytest-check/issues/198)).
>   Non-assertion exceptions (IndexError, KeyError, AttributeError, etc.) are now properly caught and reported as check failures.
>
> [2.7.6] - 2026-Mar-04
> ---------------------
>
> ### Fixed
>
> * (typing) Set comparison function types such that None is not allowed
>
> [2.7.5] - 2026-Mar-04
> ---------------------
>
> ### Changed
>
> * Passing `None` to comparison functions like `greater()`, `less()`, etc. used to raise an exception, which caused a test failure and stopped the test.
> * That's unexpected with a check function.
> * So now the check fails with a meaningful error message and continues with the rest of the test.
> * (typing) Allow numpy floats with comparison functions to pass mypy.
>
> [2.7.4] - 2026-Mar-03
> ---------------------
>
> ### Fixed
>
> * (typing) Allow mixed `int`/`float` arguments in strict mypy for comparison helpers by adding `float` numeric overloads for `greater()`, `greater_equal()`, `less()`, and `less_equal()` in `check_functions.py`.
>
> [2.7.3] - 2026-Mar-02
> ---------------------
>
> ### Added
>
> * Add `__init__.pyi` stub file for IDE intellisense (e.g. VSCode) and static type checkers.
> * Add PEP 561 `py.typed` marker so the package is recognized as typed.
> * (examples) Add `test_example_mypy.py` to validate `import pytest_check as check` with mypy.
>
> ### Fixed
>
> * Ignore dist-packages in pseudo stack trace - Fixes [ArcadeData#196](https://redirect.github.com/okken/pytest-check/issues/196) - Thanks [`@​siferati`](https://github.com/siferati)
> * (typing) Resolve remaining mypy errors for `import pytest_check as check` usage; internal adjustments in `check_functions.py`.

... (truncated)


Commits

* [`c356b52`](okken/pytest-check@c356b52) Add xfail support for check helper functions
* [`1c5add3`](okken/pytest-check@1c5add3) 2.7.7
* [`60d87c4`](okken/pytest-check@60d87c4) fix mypy issue
* [`b8ee598`](okken/pytest-check@b8ee598) fix [ArcadeData#198](https://redirect.github.com/okken/pytest-check/issues/198): Allow CheckContextManager to catch any exception
* [`108f139`](okken/pytest-check@108f139) mypy tweak
* [`16e79c9`](okken/pytest-check@16e79c9) don't allow None for comparisons
* [`4f6d1ea`](okken/pytest-check@4f6d1ea) type safe optional import
* [`9b0ec93`](okken/pytest-check@9b0ec93) allow type checking with numpy floats and comparision functions
* [`de69ee8`](okken/pytest-check@de69ee8) appropriate check fails with None passed to order comparisons
* [`0ce3cdb`](okken/pytest-check@0ce3cdb) one more mypy fix
* Additional commits viewable in [compare view](okken/pytest-check@2.5.0...2.8.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support Tinkerpop 3.5.1

1 participant