Skip to content

Commit 26454da

Browse files
committed
'setup.py' was missing from the source distribution.
1 parent f2d31b0 commit 26454da

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ include regex/__init__.py
88
include regex/_main.py
99
include regex/_regex_core.py
1010
include regex/tests/test_regex.py
11+
include setup.py
1112
include src/_regex.c
1213
include src/_regex.h
1314
include src/_regex_unicode.c

changelog.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Version: 2025.10.23
2+
3+
'setup.py' was missing from the source distribution.
4+
5+
Version: 2025.10.22
6+
7+
Fixed test in main.yml.
8+
9+
Version: 2025.10.21
10+
11+
Moved tests into subfolder.
12+
13+
Version: 2025.10.20
14+
15+
Re-organised files.
16+
17+
Updated to Unicode 17.0.0.
18+
119
Version: 2025.9.20
220

321
Enable free-threading support in cibuildwheel in another place.

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.22"
7+
version = "2025.10.23"
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.22"
244+
__version__ = "2025.10.23"
245245

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

0 commit comments

Comments
 (0)