Skip to content

Commit 987f0e6

Browse files
authored
Update Exasol DB versions to use in tests (#625)
* Update Exasol DB versions to use in tests
1 parent 4c2f034 commit 987f0e6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

doc/changes/unreleased.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and replaces them with `format:fix` and `format:check`.
66
## Refactoring
77

88
* #606: Renamed nox session `project:fix` more aptly to `format:fix` and `project:format` to `format:check`
9+
* #604: Updated `BaseConfig.exasol_versions` to `("7.1.30", "8.29.13", "2025.1.8")`
910

1011
## Feature
1112

doc/developer_guide/modules/nox_tasks.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ nox_tasks
44
lint:import (experimental)
55
__________________________
66

7-
`Import Linter <https://import-linter.readthedocs.io/en/stable/readme.html>`_
7+
`Import Linter <https://import-linter.readthedocs.io/en/stable/>`_
88
allows you to define and enforce rules for the imports within and between Python packages.
99

1010
.. important::
1111

1212
First configure the linter in file :code:`.import_linter_config`, see
13-
`import-linter top-level-configuration <https://import-linter.readthedocs.io/en/stable/usage.html#top-level-configuration>`_
14-
and `import-linter contract types <https://import-linter.readthedocs.io/en/stable/contract_types.html>`_
15-
13+
`import-linter top-level-configuration <https://import-linter.readthedocs.io/en/stable/get_started/configure/>`_
14+
and `import-linter contract types <https://import-linter.readthedocs.io/en/stable/contract_types/>`_

exasol/toolbox/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class BaseConfig(BaseModel):
5252
)
5353

5454
exasol_versions: tuple[ValidVersionStr, ...] = Field(
55-
default=("7.1.30", "8.29.6", "2025.1.0"),
55+
default=("7.1.30", "8.29.13", "2025.1.8"),
5656
description="Exasol versions to use in running CI workflows for integration tests using the DB",
5757
)
5858
create_major_version_tags: bool = Field(

poetry.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)