Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
df-aggregator
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oleksandr Barabash
df-aggregator
Commits
0cb63865
Commit
0cb63865
authored
Oct 06, 2021
by
Corey Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python Version Enforcement
parent
0b4fa87a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
df-aggregator.py
df-aggregator.py
+9
-1
No files found.
df-aggregator.py
View file @
0cb63865
...
...
@@ -22,7 +22,7 @@ import math
import
time
import
sqlite3
import
threading
import
signal
,
sys
import
signal
import
json
from
colorsys
import
hsv_to_rgb
from
optparse
import
OptionParser
...
...
@@ -37,6 +37,14 @@ from multiprocessing import Process, Queue
from
bottle
import
route
,
run
,
request
,
get
,
post
,
put
,
response
,
redirect
,
template
,
static_file
from
bottle.ext.websocket
import
GeventWebSocketServer
,
websocket
from
sys
import
version_info
if
(
version_info
.
major
!=
3
or
version_info
.
minor
<
6
):
print
(
"Looks like you're running python version "
+
str
(
version_info
.
major
)
+
"."
+
str
(
version_info
.
minor
)
+
", which is no longer supported."
)
print
(
"Your python version is out of date, please update to 3.6 or newer."
)
quit
()
DBSCAN_Q
=
Queue
()
DBSCAN_WAIT_Q
=
Queue
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment