diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 0fc344f..5154aa7 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -13,11 +13,11 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.8", "3.9", "3.10", "3.11"] + python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up Python 3 - uses: actions/setup-python@v3 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python_version }} - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index 324de81..e44f9fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.1.6] - October 23, 2025 + +- Upgraded axe-core JS version to v4.11.0. You may see the number of violations change as a result, as new axe-core versions sometimes add new rules and update existing ones. + + ## [0.1.5] - June 21, 2025 -- Upgraded axe-core JS version to v4.10.3. You may seen the number of violations change as a result, as they added new rules and updated existing ones. +- Upgraded axe-core JS version to v4.10.3. You may see the number of violations change as a result, as they added new rules and updated existing ones. diff --git a/pyproject.toml b/pyproject.toml index 58235cd..7367959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "axe-playwright-python" description = "Automated web accessibility testing using axe-core engine and Playwright." -version = "0.1.5" +version = "0.1.6" authors = [{name = "Pamela Fox", "email" = "pamela.fox@gmail.com"}] requires-python = ">=3.8" readme = "README.md" @@ -17,6 +17,8 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Adaptive Technologies", "Topic :: Software Development", "Topic :: Software Development :: Quality Assurance",