diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 2f54525..00411a8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -17,7 +17,7 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.x' @@ -31,7 +31,7 @@ jobs: build-wheel: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python @@ -68,11 +68,11 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11'] + python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12'] sphinx-version: ['>=4,<5', '>=5,<6', '>=6a0,<7', '>=7,<8'] os: [windows-latest, macos-latest, ubuntu-latest] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -109,7 +109,7 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Python diff --git a/.readthedocs.yml b/.readthedocs.yml index cdc9629..446192a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,7 +3,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.11" + python: "3" python: install: diff --git a/setup.py b/setup.py index d797402..51944c0 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python", "Topic :: Documentation :: Sphinx", "Topic :: Documentation",