Skip to content

Commit 797b57a

Browse files
author
Matthew Barnett
committed
Fixed pyproject.toml and setup.py.
1 parent 16bcce0 commit 797b57a

File tree

4 files changed

+8
-35
lines changed

4 files changed

+8
-35
lines changed

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version: 2023.5.4
2+
3+
Fixed pyproject.toml and setup.py.
4+
15
Version: 2023.5.3
26

37
pyproject.toml was missing.

pyproject.toml

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,3 @@
1-
[project]
2-
name = "regex"
3-
version = "2023.5.2"
4-
authors = [
5-
{name="Matthew Barnett", email="[email protected]"},
6-
]
7-
description = "Alternative regular expression module, to replace re."
8-
readme = "README.rst"
9-
requires-python = ">=3.6"
10-
classifiers = [
11-
"Development Status :: 5 - Production/Stable",
12-
"Intended Audience :: Developers",
13-
"License :: OSI Approved :: Apache Software License",
14-
"Operating System :: OS Independent",
15-
"Programming Language :: Python :: 3.6",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
18-
"Programming Language :: Python :: 3.9",
19-
"Programming Language :: Python :: 3.10",
20-
"Programming Language :: Python :: 3.11",
21-
"Topic :: Scientific/Engineering :: Information Analysis",
22-
"Topic :: Software Development :: Libraries :: Python Modules",
23-
"Topic :: Text Processing",
24-
"Topic :: Text Processing :: General",
25-
]
26-
license = {file = "LICENSE.txt"}
27-
281
[build-system]
29-
requires = ["setuptools>=61.0"]
2+
requires = ["setuptools"]
303
build-backend = "setuptools.build_meta"
31-
32-
[project.urls]
33-
"Homepage" = "https://github.com/mrabarnett/mrab-regex"
34-
"Bug Tracker" = "https://github.com/mrabarnett/mrab-regex/issues"

regex_3/regex.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__ = "2.5.126"
244+
__version__ = "2.5.127"
245245

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='regex',
10-
version='2023.5.2',
10+
version='2023.5.4',
1111
description='Alternative regular expression module, to replace re.',
1212
long_description=long_description,
1313
long_description_content_type='text/x-rst',
@@ -32,7 +32,7 @@
3232
'Topic :: Text Processing',
3333
'Topic :: Text Processing :: General',
3434
],
35-
python_requires='>=3.8',
35+
python_requires='>=3.6',
3636

3737
package_dir={'regex': 'regex_3'},
3838
py_modules=['regex.__init__', 'regex.regex', 'regex._regex_core',

0 commit comments

Comments
 (0)