diff --git a/.github/workflows/python-release-conda.yml b/.github/workflows/python-release-conda.yml index 3427d4f5..1726f5de 100644 --- a/.github/workflows/python-release-conda.yml +++ b/.github/workflows/python-release-conda.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest] - python: [3.7, 3.8, 3.9] + python: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout repository diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 3f4d274b..c88eb5b1 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -34,7 +34,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python: [3.7, 3.8, 3.9] + python: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout repository uses: actions/checkout@v2 @@ -80,7 +80,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-10.15] - python: [3.7, 3.8, 3.9] + python: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout repository uses: actions/checkout@v2 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index be78ec86..c240b40d 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -16,7 +16,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python: [3.7, 3.8, 3.9] + python: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout repository uses: actions/checkout@v1 diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 59610017..20cf24f7 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -30,6 +30,8 @@ setup( "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", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], package_dir={"": "py_src"},