Skip to content

Commit 422446c

Browse files
authored
Merge pull request #12 from aosingh/dev/1.1.0
v1.1.0
2 parents dede124 + 054cafd commit 422446c

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

.github/workflows/lexpy_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [macos-latest, windows-latest, ubuntu-latest]
12-
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
12+
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']
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Setup Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v4

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/)
99
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
1010
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3100/)
11+
[![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
12+
[![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/release/python-3120/)
13+
14+
1115

1216
[![PyPy3.7](https://img.shields.io/badge/python-PyPy3.7-blue.svg)](https://www.pypy.org/download.html)
1317
[![PyPy3.8](https://img.shields.io/badge/python-PyPy3.8-blue.svg)](https://www.pypy.org/download.html)

lexpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.1.0"
22
from lexpy.trie import Trie
33
from lexpy.dawg import DAWG
44

lexpy/_base/automata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ def __init__(self, root):
1919
def __contains__(self, word):
2020
"""
2121
Description:
22-
To enable the use of 'in' keyword on dawg. Returns true if the word is present in dawg else false
22+
To enable the use of 'in' keyword on dawg.
23+
Returns true if the word is present in dawg else false
2324
2425
Args:
2526
:arg word (str) The word to be searched

setup.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = lexpy
3-
version = 1.0.0
3+
version = 1.1.0
44
description = Python package for lexicon
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -19,6 +19,8 @@ classifiers =
1919
'Programming Language :: Python :: 3.8'
2020
'Programming Language :: Python :: 3.9'
2121
'Programming Language :: Python :: 3.10'
22+
'Programming Language :: Python :: 3.11'
23+
'Programming Language :: Python :: 3.12'
2224
'Operating System :: POSIX :: Linux'
2325
'Operating System :: Unix'
2426
'Operating System :: Microsoft :: Windows'
@@ -31,9 +33,9 @@ project_urls =
3133
Documentation = https://github.com/aosingh/lexpy
3234
Source = https://github.com/aosingh/lexpy
3335
Bug Tracker = https://github.com/aosingh/lexpy/issues
34-
CI: https://github.com/aosingh/lexpy/actions
35-
Release Notes: https://github.com/aosingh/lexpy/releases
36-
License: https://github.com/aosingh/lexpy/blob/main/LICENSE
36+
CI= https://github.com/aosingh/lexpy/actions
37+
Release Notes= https://github.com/aosingh/lexpy/releases
38+
License= https://github.com/aosingh/lexpy/blob/main/LICENSE
3739

3840

3941
[options]

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
DESCRIPTION = 'Python package for lexicon'
1515
LICENSE = 'GNU GPLv3'
1616
URL = 'https://github.com/aosingh/lexpy'
17-
VERSION = '1.0.0'
17+
VERSION = '1.1.0'
1818

1919
PACKAGES = ['lexpy']
2020

@@ -31,14 +31,16 @@
3131
'Programming Language :: Python :: 3.8',
3232
'Programming Language :: Python :: 3.9',
3333
'Programming Language :: Python :: 3.10',
34+
'Programming Language :: Python :: 3.11',
35+
'Programming Language :: Python :: 3.12',
3436
'Operating System :: POSIX :: Linux',
3537
'Operating System :: Unix',
3638
'Operating System :: Microsoft :: Windows',
3739
'Operating System :: MacOS'
3840
]
3941
keywords = 'trie suffix-trees lexicon directed-acyclic-word-graph dawg'
4042

41-
project_urls = {"Documentation" : "https://github.com/aosingh/lexpy",
43+
project_urls = {"Documentation": "https://github.com/aosingh/lexpy",
4244
"Source": "https://github.com/aosingh/lexpy",
4345
"Bug Tracker": "https://github.com/aosingh/lexpy/issues",
4446
"CI": "https://github.com/aosingh/lexpy/actions",
@@ -63,4 +65,4 @@
6365
include_package_data=True,
6466
classifiers=classifiers,
6567
keywords=keywords.split(),
66-
)
68+
)

0 commit comments

Comments
 (0)