From 08798d64ac28d4f2d599acd0436514bb07ffe819 Mon Sep 17 00:00:00 2001 From: Nikhil Dhandre Date: Thu, 16 Jan 2025 22:11:29 +0530 Subject: [PATCH] Python 3.13 test run --- .github/workflows/test_suite.yml | 8 ++++---- .pre-commit-config.yaml | 2 +- pyproject.toml | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_suite.yml b/.github/workflows/test_suite.yml index 57ecae6..f9487d6 100644 --- a/.github/workflows/test_suite.yml +++ b/.github/workflows/test_suite.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: browser: [chrome, firefox] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - name: Pull selenium-standalone:latest @@ -71,7 +71,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.x" - name: Install Deps run: | @@ -102,7 +102,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.x" architecture: "x64" - name: Development setup on ${{ matrix.os }} @@ -121,7 +121,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.x" architecture: "x64" - name: Build and verify with twine diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f2b3748..6953e74 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.9.1 + rev: v0.9.2 hooks: - id: ruff args: diff --git a/pyproject.toml b/pyproject.toml index d3c311f..abbd91e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules",