From 05f76f7715c48cd70f29be0293227254c8a782bf Mon Sep 17 00:00:00 2001 From: Leo Schick Date: Tue, 21 Nov 2023 16:20:24 +0100 Subject: [PATCH] drop python 3.7 support, add python 3.12 support --- .github/workflows/build.yaml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cdb644b..2f9db0d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: 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'] steps: - name: Chechout code uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index 23a82fc..6c9185f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ license = MIT [options] packages = mara_schema -python_requires = >= 3.6 +python_requires = >= 3.8 install_requires = flask graphviz