email notifications disabled

This commit is contained in:
ingvar1995 2017-06-11 22:58:11 +03:00
parent 8ea1a77186
commit a20a00130d
6 changed files with 3 additions and 10 deletions

View File

@ -1,6 +1,8 @@
language: python
python:
- "3.4"
notifications:
email: false
before_install:
- sudo apt-get update
- sudo apt-get install -y checkinstall build-essential

View File

@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
from sqlite3 import connect
import settings
from os import chdir

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
try:
from PySide import QtCore, QtGui
except ImportError:

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import sys
from loginscreen import LoginScreen
import profile

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from ctypes import c_char_p, Structure, c_bool, byref, c_int, c_size_t, POINTER, c_uint16, c_void_p, c_uint64
from ctypes import create_string_buffer, ArgumentError, CFUNCTYPE, c_uint32, sizeof, c_uint8
from toxcore_enums_and_consts import *

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import os
import time
import shutil
@ -80,6 +78,7 @@ def append_slash(s):
return s
@cached
def is_64_bit():
return sys.maxsize > 2 ** 32