diff --git a/.github/workflows/lexpy_build.yaml b/.github/workflows/lexpy_build.yaml index 74d6546..d1516fc 100644 --- a/.github/workflows/lexpy_build.yaml +++ b/.github/workflows/lexpy_build.yaml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10'] steps: - name: Checkout diff --git a/lexpy/__init__.py b/lexpy/__init__.py index c95b288..5ea3e6b 100644 --- a/lexpy/__init__.py +++ b/lexpy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0" +__version__ = "1.1.0" from lexpy.trie import Trie from lexpy.dawg import DAWG diff --git a/lexpy/_base/automata.py b/lexpy/_base/automata.py index ae1458b..ef4e669 100644 --- a/lexpy/_base/automata.py +++ b/lexpy/_base/automata.py @@ -19,7 +19,8 @@ def __init__(self, root): def __contains__(self, word): """ Description: - To enable the use of 'in' keyword on dawg. Returns true if the word is present in dawg else false + To enable the use of 'in' keyword on dawg. + Returns true if the word is present in dawg else false Args: :arg word (str) The word to be searched diff --git a/setup.cfg b/setup.cfg index cc58ed0..6e8799c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = lexpy -version = 1.0.0 +version = 1.1.0 description = Python package for lexicon long_description = file: README.md long_description_content_type = text/markdown diff --git a/setup.py b/setup.py index c91cc3b..d2701da 100644 --- a/setup.py +++ b/setup.py @@ -65,4 +65,4 @@ include_package_data=True, classifiers=classifiers, keywords=keywords.split(), -) \ No newline at end of file +)