Skip to content

Commit 6ed1439

Browse files
committed
v1.2.1
1 parent 8888792 commit 6ed1439

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.6", "3.7", 3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1414

1515
steps:
1616
- uses: actions/checkout@v4
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: macos-latest
5151
strategy:
5252
matrix:
53-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
53+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
5454

5555
steps:
5656
- uses: actions/checkout@v4
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: windows-latest
8989
strategy:
9090
matrix:
91-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
91+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
9292

9393
steps:
9494
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def read_readme():
3737

3838
setup(
3939
name="sqlidps",
40-
version="1.1.0",
40+
version="1.2.1",
4141
packages=find_packages(),
4242
install_requires=["numpy"],
4343
ext_modules=[tokenizer_module],
@@ -71,7 +71,7 @@ def read_readme():
7171
"Topic :: Software Development :: Libraries :: Python Modules",
7272
"Topic :: Security",
7373
],
74-
python_requires=">=3.6",
74+
python_requires=">=3.8",
7575
keywords="sql injection detection security machine-learning",
7676
project_urls={
7777
"Bug Reports": "https://github.com/DPRIYATHAM/sqlidps/issues",

sqlidps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .inference import *
22

33

4-
__version__ = '1.1.0'
4+
__version__ = '1.2.1'

0 commit comments

Comments
 (0)