From e3c212e7e330b6111815735f22c392897a2908f3 Mon Sep 17 00:00:00 2001 From: igorcoding Date: Sun, 5 May 2024 15:45:43 +0300 Subject: [PATCH] remove mac os python 3.7 --- .github/workflows/actions.yaml | 2 ++ CHANGELOG.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 61e68a2..7a503d1 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -12,6 +12,8 @@ jobs: exclude: - os: macos-latest tarantool: '1.10' + - os: macos-latest + tarantool: '3.7' - python-version: 'pypy3.10' tarantool: '1.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index 9968a6c..9b09155 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ * Implemented ability to send update/upsert requests with field names when schema is disabled (`fetch_schema=False`) and when fields are not found in the schema (good example of this case is using json path like `data.inner1.inner2.key1` as a key) **Bug fixes:** -* Fixed issue with not being able to send Decimals in update statements. Now there are no extra checks - any payload is sent directly to Tarantool (fixes [#34]()) +* Fixed issue with not being able to send Decimals in update statements. Now there are no extra checks - any payload is sent directly to Tarantool (fixes [#34](https://github.com/igorcoding/asynctnt/issues/34)) **Other changes** * Fixed tests failing on modern Tarantool in the SQL queries.