Skip to content

Commit

Permalink
Merge branch 'master' of github.com:timetag/ETA
Browse files Browse the repository at this point in the history
  • Loading branch information
linzuzeng committed Jul 27, 2019
2 parents 183775f + cf51282 commit 543afb4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion etabackend/eta.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import multiprocessing
from subprocess import run
#multiprocessing.freeze_support()
ETA_VERSION = "v0.6.2"
ETA_VERSION = "v0.6.3"
try:
#deps check
import webinstall
Expand Down
2 changes: 1 addition & 1 deletion etabackend/eta_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def simple_cut(self, filename, cuts=1, keep_indexes=None, format=-1):
if ret1 is not 0:
raise ValueError(
"ETA.SIMPLE_CUT: File {} is not found or incorrect, err code {}.".format(filename, ret1))
BytesofRecords = parse_output[-2]
BytesofRecords = parse_output[5]
TTF_header_offset = parse_output[0]
TTF_filesize = parse_output[1]

Expand Down
3 changes: 2 additions & 1 deletion etabackend/parser_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
NumRecords_get = link_global("NumRecords")
RecordType_get =link_global("RecordType")
PARSE_TimeTagFileHeader = link_function("PARSE_TimeTagFileHeader",2)
@jit(nopython=True, parallel=True, nogil=True)
@jit(nopython=True, nogil=True)
def parse_header(filename1, filetype):
link_libs()
filename = ffi.from_buffer(filename1)
ret1 = PARSE_TimeTagFileHeader(filename,nb.int32(filetype))
# can not return them as a list because the cast from int32 to unicode is not possible
return (ret1,[
TTF_header_offset_get(),#0
TTF_filesize_get(),#1
Expand Down
2 changes: 1 addition & 1 deletion gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"author": "Zuzeng Lin <zuzeng@kth.se>",
"homepage": "http://timetag.github.io",
"version": "0.6.2",
"version": "0.6.3",
"scripts": {
"dev": "electron .",
"dist": "electron-builder",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name="etabackend",
version="0.6.2",
version="0.6.3",
author="ETA Team",
description="Extensible Timetag Analyzer",
include_package_data=True,
Expand Down

0 comments on commit 543afb4

Please # to comment.