diff options
author | Inada Naoki <songofacandy@gmail.com> | 2021-11-16 14:55:36 +0900 |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2021-11-16 14:55:36 +0900 |
commit | 17a108901127306195477a2565bf1e67dc85265c (patch) | |
tree | 6247f130ccced69f5549c509dd9f831df5f12b4a | |
parent | 9b84e490e7c78ac9bbd76dcf9ce71c1d0c978d81 (diff) | |
download | msgpack-python-17a108901127306195477a2565bf1e67dc85265c.tar.gz |
Support Python 3.10 and Drop Python 3.5
-rw-r--r-- | .github/workflows/linux.yml | 11 | ||||
-rw-r--r-- | docker/shared.env | 2 | ||||
-rwxr-xr-x | setup.py | 4 |
3 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f9707b1..811bc13 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -47,6 +47,17 @@ jobs: pytest -v test + - name: Set up Python 3.10 + uses: actions/setup-python@v1 + with: + python-version: "3.10" + + - name: Run test (3.10) + run: | + pip install pytest + pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse + pytest -v test + - name: Set up Python 3.9 uses: actions/setup-python@v1 with: diff --git a/docker/shared.env b/docker/shared.env index 3601a07..80274ac 100644 --- a/docker/shared.env +++ b/docker/shared.env @@ -1,7 +1,7 @@ PYTHON_VERSIONS=( + cp310-cp310 cp39-cp39 cp38-cp38 cp37-cp37m cp36-cp36m - cp35-cp35m ) @@ -125,14 +125,12 @@ setup( }, license="Apache 2.0", classifiers=[ - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Intended Audience :: Developers", |