diff --git a/package.sh b/package.sh index 0c75a1bbfd0..f49f15632fd 100755 --- a/package.sh +++ b/package.sh @@ -45,18 +45,16 @@ PYTHON_VERSION=$("${PYTHON}" -V 2>&1 | awk '{print $2}' | cut -d. -f-2) if [[ $(uname) == "Linux" ]]; then if [[ "${PYTHON_VERSION}" == "3.7" ]]; then PY_TAGS="cp37-cp37m" - elif [[ "${PYTHON_VERSION}" == "3.6" ]]; then - PY_TAGS="cp36-cp36m" else - echo "Could not find 'Python 3.6' or 'Python 3.7'" + echo "Could not find 'Python 3.7'" exit 1 fi PLATFORM_TAG=$(to_lower "$(uname)_$(uname -m)") elif [[ $(uname) == "Darwin" ]]; then - if [[ "${PYTHON_VERSION}" == "3.7" || "${PYTHON_VERSION}" == "3.6" ]]; then + if [[ "${PYTHON_VERSION}" == "3.7" ]]; then PY_TAGS="py3-none" else - echo "Could not find 'Python 3.6' or 'Python 3.7'" + echo "Could not find 'Python 3.7'" exit 1 fi PLATFORM_TAG="any" diff --git a/requirements.txt b/requirements.txt index e4b61f2b6fd..e182cd7a3b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,6 @@ protobuf >= 3.8.0 asttokens >= 1.1.13 pillow >= 6.2.0 scipy >= 1.3.3 -dataclasses >= 0.6 easydict >= 1.9 sympy >= 1.4 cffi >= 1.13.2