Skip to content

Commit 5ea7941

Browse files
committed
enhancement: refuse from regex as dependency in favor of standard re
1 parent b37caa7 commit 5ea7941

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.3 — 2025-02-15
9+
### Removed
10+
11+
- [x] refuse from `regex` as dependency in favor of standard `re`
12+
813
## 0.1.2 — 2025-02-15
914
### Removed
1015

setup.py

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

88
setuptools.setup(
99
name='yoficator',
10-
version='0.1.2',
10+
version='0.1.3',
1111
description='A Russian text yoficator (ёфикатор)',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
@@ -16,7 +16,6 @@
1616
package_data={
1717
'yoficator': ['_data/yoficator.dic'],
1818
},
19-
install_requires=['regex==2015.11.09'],
2019
include_package_data=True,
2120
classifiers=[
2221
'Programming Language :: Python :: 3',

yoficator/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import print_function, unicode_literals
44
import codecs
55
import os, sys
6-
import regex as re
6+
import re
77

88
#-------------------------------------------------------------------------#
99
#

0 commit comments

Comments
 (0)