diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 2656393..4763a78 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -20,7 +20,7 @@ jobs: max-parallel: 2 matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v6.0.1 - name: Install juliaup @@ -44,4 +44,4 @@ jobs: tox -e unit-tests - name: Upload coverage report to Codecov uses: codecov/codecov-action@v5 - if: ${{ strategy.job-index }} == 0 + if: ${{ strategy.job-index == 0 }} diff --git a/pyproject.toml b/pyproject.toml index 62ee271..db3f89f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,14 +7,13 @@ name = "amazon-braket-simulator-v2" description = "Local simulation of quantum circuits" readme = {file = "README.md", content-type = "text/markdown"} license = {file = "LICENSE"} -requires-python = ">=3.10" +requires-python = ">=3.11" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Natural Language :: English", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", @@ -36,7 +35,7 @@ optional-dependencies.test = { file = "requirements-test.txt" } [tool.ruff] -target-version = "py310" +target-version = "py311" line-length = 100 format.preview = true format.docstring-code-line-length = 100