Browse Source

Updated requirements.txt

pull/30/head v0.4.6
Sheng 6 years ago
parent
commit
1a7c395c75
  1. 2
      requirements.txt
  2. 8
      tests/sshserver.py
  3. 2
      webssh/_version.py

2
requirements.txt

@ -1,2 +1,2 @@
paramiko==2.4.1 paramiko==2.4.1
tornado==5.0.2 tornado==5.1

8
tests/sshserver.py

@ -161,10 +161,10 @@ def run_ssh_server(port=2200, running=True):
while data: while data:
s = chan.send(data) s = chan.send(data)
data = data[s:] data = data[s:]
else:
chan.close() chan.close()
t.close() t.close()
client.close() client.close()
try: try:
sock.close() sock.close()

2
webssh/_version.py

@ -1,2 +1,2 @@
__version_info__ = (0, 4, 5) __version_info__ = (0, 4, 6)
__version__ = '.'.join(map(str, __version_info__)) __version__ = '.'.join(map(str, __version_info__))

Loading…
Cancel
Save