diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d5073d0..f13b86d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -49,7 +49,7 @@ jobs: id: py uses: actions/setup-python@v4 with: - python-version: "3.5 - 3.10" + python-version: "3.5 - 3.11" update-environment: true - name: Set up Python 3.5 @@ -117,7 +117,7 @@ jobs: uses: actions/setup-python@v4 if: startsWith(github.ref, 'refs/tags/') with: - python-version: "3.5 - 3.10" + python-version: "3.5 - 3.11" update-environment: true - name: Set __release__ diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index bf9cbc6..462551a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -27,7 +27,7 @@ jobs: id: py uses: actions/setup-python@v4 with: - python-version: "3.5 - 3.10" + python-version: "3.5 - 3.11" update-environment: true - name: Set up Python 3.5 diff --git a/pyproject.toml b/pyproject.toml index 4da4c45..b9ccc44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Environment :: GPU", @@ -70,7 +71,7 @@ include = ["nvitop", "nvitop.*"] [tool.black] line-length = 100 skip-string-normalization = true -target-version = ["py35", "py36", "py37", "py38", "py39", "py310"] +target-version = ["py35", "py36", "py37", "py38", "py39", "py310", "py311"] [tool.isort] profile = "black"