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

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