Skip to content

Commit dd54e13

Browse files
authored
Merge pull request #139 from kube-HPC/fix_git_flow
remove 3.7
2 parents e396a82 + 1bc2e3a commit dd54e13

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Diff for: .github/workflows/pr.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Python ${{ matrix.python-version }}
1818
strategy:
1919
matrix:
20-
python-version: ["3.7", "3.8", "3.9", "3.10"]
20+
python-version: ["3.8", "3.9", "3.10"]
2121
fail-fast: false
2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup python
3636
uses: actions/setup-python@v2
3737
with:
38-
python-version: '3.7'
38+
python-version: '3.8'
3939
architecture: x64
4040
- run: ./tools/ci/coverage.sh
4141
env:

Diff for: hkube_python_wrapper/communication/DataRequest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def invoke(self):
2929
responseFrames = adapter.invokeAdapter()
3030
results = []
3131
for i in range(0, int(len(responseFrames)/2)):
32-
header = responseFrames[i*2]
33-
content = responseFrames[i*2+1]
32+
header = responseFrames[i*2] # pylint: disable=E1136
33+
content = responseFrames[i*2+1] # pylint: disable=E1136
3434
decoded = self.encoding.decode(header=header, value=content)
3535
results.append((len(content), decoded))
3636
return results

Diff for: hkube_python_wrapper/communication/zmq/streaming/ZMQListener.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _readMessage(self, timeout=POLL_MS):
8484
if (result == zmq.POLLIN):
8585
self._pollTimeoutCount = 0
8686
frames = self._worker.recv_multipart()
87-
signal = frames[0]
87+
signal = frames[0] # pylint: disable=E1136
8888

8989
if (signal == signals.PPP_MSG):
9090
hasMsg = True

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
'Events==0.4',
2121
'websocket-client==0.57.0',
2222
'simplejson==3.17.2',
23-
'pymongo==8.0.4',
23+
'pymongo==4.10.1',
2424
'msgpack==1.0.2',
2525
'boto3<=1.17.20',
2626
"wsaccel==0.6.2",
2727
"six==1.15.0",
28-
'pyzmq<=22.0.3',
28+
'pyzmq<=26.2.1',
2929
'jaeger-client==4.0.0; python_version < "3.2.0"',
3030
'jaeger-client>=4.4.0; python_version >= "3.2.0"',
3131
"pympler==0.9"

0 commit comments

Comments
 (0)