1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 03:08:14 +00:00

Bump version to alpha4.

This commit is contained in:
grossmj 2014-05-14 17:45:06 -06:00
parent 562e5c4c43
commit 6981f82b7b
3 changed files with 6 additions and 3 deletions

View File

@ -334,7 +334,10 @@ class TelnetServer(Console):
def _disconnect(self, fileno):
fd = self.fd_dict.pop(fileno)
log.info("Telnet client disconnected")
fd.shutdown(socket.SHUT_RDWR)
try:
fd.shutdown(socket.SHUT_RDWR)
except OSError as e:
log.warn("shutdown: {}".format(e))
fd.close()
def __enter__(self):

View File

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "1.0a4.dev2"
__version__ = "1.0a4"
__version_info__ = (1, 0, 0, -99)

View File

@ -46,7 +46,7 @@ setup(
long_description=open("README.rst", "r").read(),
install_requires=[
"tornado>=3.1",
"pyzmq>=13.1.0", # this is the strict minimum, recommended is >= 14.0.0
"pyzmq>=14.0.0",
"jsonschema==2.3.0"
],
entry_points={