Skip to content

Commit

Permalink
Added pyproject.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed May 2, 2023
1 parent 15cbd1e commit 78460dc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Run test
run: |
python setup.py install
python -m pip install -vv .
python -m unittest -v regex.test_regex
# Build Linux/macOS/Windows wheels.
Expand Down
40 changes: 0 additions & 40 deletions .hgeol

This file was deleted.

1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include regex_3/*.py
include docs/*.*
include tools/*.py
include LICENSE.txt
include pyproject.toml
2 changes: 1 addition & 1 deletion regex_3/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
"VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__",
"__doc__", "RegexFlag"]

__version__ = "2.5.125"
__version__ = "2.5.126"

# --------------------------------------------------------------------
# Public interface.
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='regex',
version='2023.3.23',
version='2023.5.2',
description='Alternative regular expression module, to replace re.',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand All @@ -21,7 +21,12 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
Expand Down

0 comments on commit 78460dc

Please sign in to comment.