Skip to content

Commit

Permalink
CI: Update to CrateDB 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 23, 2023
1 parent 419f015 commit 7e06598
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
cratedb-version: ['4.8.4', '5.4.5']
cratedb-version: ['4.8.4', '5.5.0']
include:
- os: 'macos-latest'
python-version: '3.12'
cratedb-version: '5.4.5'
cratedb-version: '5.5.0'
- os: 'windows-latest'
python-version: '3.12'
cratedb-version: '5.4.5'
cratedb-version: '5.5.0'
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion DEVELOP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The tests are run using the `unittest`_ module::
In order to adjust the CrateDB version used for running the tests, amend the
environment variable ``CRATEDB_VERSION`` like::

export CRATEDB_VERSION=5.2.2
export CRATEDB_VERSION=5.5.0

If you install tox_, you can also run tests against multiple Python interpreters::

Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if sys.platform != "linux":
raise SkipTest("Integration tests only supported on Linux")

crate_version = os.getenv("CRATEDB_VERSION", "5.4.5")
crate_version = os.getenv("CRATEDB_VERSION", "5.5.0")
crate_http_port = 44209
crate_transport_port = 44309
crate_settings = {
Expand Down

0 comments on commit 7e06598

Please sign in to comment.