Skip to content

Commit f2d31b0

Browse files
committed
Fixed test in main.yml.
1 parent 2fd4dc0 commit f2d31b0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
env:
1111
PYTHON_VER: '3.11' # Python to run test/cibuildwheel
1212
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-* cp313-* cp313t-* cp314-* cp314t-*
13-
CIBW_TEST_COMMAND: python -m unittest regex.test_regex
13+
CIBW_TEST_COMMAND: python -m unittest regex.tests.test_regex
1414

1515
jobs:
1616
# Run test on Ubuntu/macOS/Windows for every commit.
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run test
3232
run: |
3333
python -m pip install -vv .
34-
python -m unittest -v regex.test_regex
34+
python -m unittest -v regex.tests.test_regex
3535
3636
# Build source distribution
3737
build_source:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "regex"
7-
version = "2025.10.21"
7+
version = "2025.10.22"
88
description = "Alternative regular expression module, to replace re."
99
readme = "README.rst"
1010
authors = [

regex/_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
"VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__",
242242
"__doc__", "RegexFlag"]
243243

244-
__version__ = "2025.10.21"
244+
__version__ = "2025.10.22"
245245

246246
# --------------------------------------------------------------------
247247
# Public interface.

0 commit comments

Comments
 (0)