Grammalecte  Check-in [13b2573e7e]

Overview
Comment:[server] fix Python requirements
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | server
Files: files | file ages | folders
SHA3-256: 13b2573e7eee8b5e45210f5ee2fee3a1036d1bda06a58833a926995b36d3b32a
User & Date: olr on 2024-06-16 06:13:03
Other Links: manifest | tags
Context
2024-06-16
06:29
[server] update bottle.py from 0.13-dev to 0.12.25 Leaf check-in: ae748416ff user: olr tags: server, trunk
06:13
[server] fix Python requirements check-in: 13b2573e7e user: olr tags: server, trunk
2024-06-11
18:12
[fx] update URL for source code check-in: e2daf17193 user: olr tags: fx, trunk
Changes

Modified grammalecte-server.py from [d086212d10] to [5e5380e96a].

316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
        TESTPAGE = True
        HOMEPAGE = HOMEPAGE.replace("{SERVER_PORT}", str(nPort))
    if dOptions:
        oGCE.setOptions(dOptions)

    # Python version
    print("Python: " + sys.version)
    if sys.version_info.major < (3, 7):
        print("Python 3.7+ required")
        return
    # Grammalecte
    echo("Grammalecte v{}".format(oGCE.version))
    oGCE.displayOptions()
    # Process Pool Executor
    initExecutor(nMultiCPU)







|







316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
        TESTPAGE = True
        HOMEPAGE = HOMEPAGE.replace("{SERVER_PORT}", str(nPort))
    if dOptions:
        oGCE.setOptions(dOptions)

    # Python version
    print("Python: " + sys.version)
    if sys.version_info < (3, 7):
        print("Python 3.7+ required")
        return
    # Grammalecte
    echo("Grammalecte v{}".format(oGCE.version))
    oGCE.displayOptions()
    # Process Pool Executor
    initExecutor(nMultiCPU)