File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,17 @@ jobs:
1010 strategy :
1111 matrix :
1212 os : [ubuntu-latest, macos-latest, windows-latest]
13- python-version : [ 'pypy-2.7', '3.13 ' ]
13+ python-version : [ 'pypy-2.7', '3.8', '3.14 ' ]
1414 exclude :
1515 - os : macos-latest
1616 python-version : ' pypy-2.7'
1717 steps :
18- - uses : actions/checkout@v2
19- - name : Set up Python
20- uses : actions/setup-python@v2
18+ - name : Checkout code
19+ uses : actions/checkout@v4
20+ with :
21+ fetch-depth : 1
22+ - name : Set up Python ${{ matrix.python-version }}
23+ uses : actions/setup-python@v5
2124 with :
2225 python-version : ${{ matrix.python-version }}
2326 - name : Basic import test
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ a033f92d136c707a25927c2383125ddb004d4283db62c004dcd67c3fc242bb1c lib/core/dump.
18918948797d6c34dd9bb8a53f7f3794c85f4288d82a9a1d6be7fcf317d388cb20d4b3 lib/core/replication.py
1901903574639db4942d16a2dc0a2f04bb7c0913c40c3862b54d34c44075a760e0c194 lib/core/revision.py
191191888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
192- fbb7a142c1870735e6b2c482ead1b45a0deeec56aad793ca36d7dba9dfec4497 lib/core/settings.py
192+ c19a9f3ab766c577222e535923b643b41ea1f5b3da61c07846fdd996701d1c7c lib/core/settings.py
193193cd5a66deee8963ba8e7e9af3dd36eb5e8127d4d68698811c29e789655f507f82 lib/core/shell.py
194194bcb5d8090d5e3e0ef2a586ba09ba80eef0c6d51feb0f611ed25299fbb254f725 lib/core/subprocessng.py
195195d35650179816193164a5f177102f18379dfbe6bb6d40fbb67b78d907b41c8038 lib/core/target.py
Original file line number Diff line number Diff line change 1919from thirdparty import six
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.10.1.54 "
22+ VERSION = "1.10.1.55 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments