Skip to content

Commit f6d6b4d

Browse files
author
Teemu Harju
committed
remove version 9.5 from supported target versions
1 parent fc94257 commit f6d6b4d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/conftest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from aiven_db_migrate.migrate.pgutils import find_pgbin_dir
66
from contextlib import contextmanager
7+
from copy import copy
78
from datetime import datetime
89
from distutils.version import LooseVersion
910
from pathlib import Path
@@ -423,7 +424,9 @@ def generate_fixtures():
423424
assert version in SUPPORTED_PG_VERSIONS, f"Supported pg versions are: {SUPPORTED_PG_VERSIONS}"
424425
pg_target_versions.append(version)
425426
else:
426-
pg_target_versions = SUPPORTED_PG_VERSIONS
427+
# We do not support PG 9.5 as target
428+
pg_target_versions = copy(SUPPORTED_PG_VERSIONS)
429+
pg_target_versions.remove("9.5")
427430

428431
for source in pg_source_versions:
429432
name_prefix = "pg{}".format(source.replace(".", ""))

0 commit comments

Comments
 (0)