Skip to content

Commit 38b886e

Browse files
authored
Merge pull request #1181 from dbcli/update-py-versions
Fix the escaping in behave.
2 parents a8f9687 + 574162d commit 38b886e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v4
@@ -48,10 +48,10 @@ jobs:
4848
- name: Set up Python
4949
uses: actions/setup-python@v5
5050
with:
51-
python-version: '3.12'
51+
python-version: '3.13'
5252

5353
- name: Install dependencies
54-
run: uv sync --all-extras -p 3.12
54+
run: uv sync --all-extras -p 3.13
5555

5656
- name: Build
5757
run: uv build

changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Internal
1010
---------
1111

1212
* Modernize to use PEP-621. Use `uv` instead of `pip` in GH actions.
13+
* Remove Python 3.8 and add Python 3.13 in test matrix.
1314

1415
1.28.0 (2024/11/10)
1516
======================

test/features/steps/iocommands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def step_edit_file(context):
1111
context.editor_file_name = os.path.join(context.package_root, "test_file_{0}.sql".format(context.conf["vi"]))
1212
if os.path.exists(context.editor_file_name):
1313
os.remove(context.editor_file_name)
14-
context.cli.sendline("\e {0}".format(os.path.basename(context.editor_file_name)))
14+
context.cli.sendline("\\e {0}".format(os.path.basename(context.editor_file_name)))
1515
wrappers.expect_exact(context, 'Entering Ex mode. Type "visual" to go to Normal mode.', timeout=2)
1616
wrappers.expect_exact(context, "\r\n:", timeout=2)
1717

0 commit comments

Comments
 (0)