From c8923c9014d4f14a4b3b77e6af32210eb0fd470d Mon Sep 17 00:00:00 2001 From: Oleg A Date: Sun, 11 Feb 2024 12:19:06 +0300 Subject: [PATCH 1/2] run tests on PR, update py versions --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f60709e..eee087f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,12 +4,14 @@ on: branches: - main pull_request: + branches: + - main jobs: test: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From 4be85e83bf86ca4c66dcb654ca66bfb62f2209b6 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Wed, 28 Feb 2024 09:37:42 +0300 Subject: [PATCH 2/2] bump python version in pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b525fe2..718928e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,11 +16,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 :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", @@ -31,7 +31,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.7" +python = ">=3.8" Jinja2 = "^3.0.0" importlib_resources = { version = "^5.7.1", python = "<3.9" }