Skip to content

Commit 78460dc

Browse files
author
Matthew Barnett
committed
Added pyproject.toml.
1 parent 15cbd1e commit 78460dc

File tree

5 files changed

+9
-43
lines changed

5 files changed

+9
-43
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Run test
3232
run: |
33-
python setup.py install
33+
python -m pip install -vv .
3434
python -m unittest -v regex.test_regex
3535
3636
# Build Linux/macOS/Windows wheels.

.hgeol

Lines changed: 0 additions & 40 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ include regex_3/*.py
44
include docs/*.*
55
include tools/*.py
66
include LICENSE.txt
7+
include pyproject.toml

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.125"
244+
__version__ = "2.5.126"
245245

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

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='regex',
10-
version='2023.3.23',
10+
version='2023.5.2',
1111
description='Alternative regular expression module, to replace re.',
1212
long_description=long_description,
1313
long_description_content_type='text/x-rst',
@@ -21,7 +21,12 @@
2121
'Intended Audience :: Developers',
2222
'License :: OSI Approved :: Apache Software License',
2323
'Operating System :: OS Independent',
24+
'Programming Language :: Python :: 3.6',
25+
'Programming Language :: Python :: 3.7',
26+
'Programming Language :: Python :: 3.8',
27+
'Programming Language :: Python :: 3.9',
2428
'Programming Language :: Python :: 3.10',
29+
'Programming Language :: Python :: 3.11',
2530
'Topic :: Scientific/Engineering :: Information Analysis',
2631
'Topic :: Software Development :: Libraries :: Python Modules',
2732
'Topic :: Text Processing',

0 commit comments

Comments
 (0)