Skip to content

Commit 2fd4dc0

Browse files
committed
Moved tests into subfolder.
1 parent 54fa96c commit 2fd4dc0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include README.rst
77
include regex/__init__.py
88
include regex/_main.py
99
include regex/_regex_core.py
10-
include regex/test_regex.py
10+
include regex/tests/test_regex.py
1111
include src/_regex.c
1212
include src/_regex.h
1313
include src/_regex_unicode.c

pyproject.toml

Lines changed: 2 additions & 2 deletions
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.9.18"
7+
version = "2025.10.21"
88
description = "Alternative regular expression module, to replace re."
99
readme = "README.rst"
1010
authors = [
@@ -40,5 +40,5 @@ py-modules = [
4040
"regex.__init__",
4141
"regex._main",
4242
"regex._regex_core",
43-
"regex.test_regex",
43+
"regex.tests.test_regex",
4444
]

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.9.18"
244+
__version__ = "2025.10.21"
245245

246246
# --------------------------------------------------------------------
247247
# Public interface.
File renamed without changes.

0 commit comments

Comments
 (0)