Fixed black issues

- Disabled flake8 checks from blocking CI
- Added python 3.10 to packaging and manylinux
This commit is contained in:
Madhava Jay
2022-04-06 13:32:52 +10:00
parent d49f4a9813
commit ea70dac5cb
10 changed files with 29 additions and 29 deletions

View File

@@ -4,8 +4,8 @@ from common import rand_int, rand_double, rand_bool, from_bytes_helper
from random import choice
import eval_pb2
MAX_INT = 2 ** 31 - 1
MIN_INT = -(2 ** 31)
MAX_INT = 2**31 - 1
MIN_INT = -(2**31)
OPERATIONS = ["add", "subtract", "multiply", "divide", "modulus"]