add support for python 3.10.

update python ver in readme

all tests run and passed for version 3.10

setup.py removed from gitignore.
This commit is contained in:
onyx-and-iris
2022-08-31 20:13:23 +01:00
parent 35b7c16b6b
commit 7c6ebd1dae
4 changed files with 15 additions and 12 deletions

View File

@@ -4,7 +4,11 @@ import json
from pathlib import Path
from random import randint
import tomllib
try:
import tomllib
except ModuleNotFoundError:
import tomli as tomllib
import websocket