diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00277ab..714c6b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] os: [ubuntu-latest, windows-latest, macos-latest] # Just to slim down the test matrix: exclude: @@ -43,7 +43,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.11' - name: Install Python dependencies run: | python -m pip install --upgrade hatch diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index d1aedce..eeab511 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.11' - name: Install Hatch run: | python -m pip install -U hatch diff --git a/pyproject.toml b/pyproject.toml index 5ce30d1..e76d2c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = "MkDocs i18n plugin using static translation markdown files" readme = "README.md" license = "MIT" -requires-python = ">=3.7" +requires-python = ">=3.8" authors = [ { name = "Ultrabug", email = "ultrabug@ultrabug.net" }, ] @@ -18,11 +18,11 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ @@ -72,7 +72,7 @@ test = [ ] [[tool.hatch.envs.test.matrix]] -python = ["3.7", "3.8", "3.9", "3.10", "3.11"] +python = ["3.8", "3.9", "3.10", "3.11", "3.12"] type = ["default"] [tool.hatch.envs.docs] @@ -101,7 +101,7 @@ format = [ [tool.black] line-length = 100 -target-version = ["py310"] +target-version = ["py311"] skip-string-normalization = true [tool.isort]