Skip to content

Commit 59bd03f

Browse files
committed
Trying smth simple
1 parent 7f7e78a commit 59bd03f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ${{ matrix.os }}
9+
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
os: [ubuntu-latest, macos-latest]
13-
python-version: [ '2.x', '3.x', 'pypy-2.7', 'pypy-3.7' ]
12+
python-version: [ '3.x', 'pypy-3.7' ]
1413
steps:
1514
- uses: actions/checkout@v2
1615
- name: Set up Python

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.10.3"
23+
VERSION = "1.5.10.4"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)