From 5321ce76f18511e6205943de30a96204377962e8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sat, 19 Nov 2022 23:33:33 -0600 Subject: [PATCH] Bump compat target to 3.8 in setup.py and Github CI --- .github/workflows/ci.yml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dcbd02..bcd8889 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.8' - name: "Main Script" run: | curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.x'] + python-version: ['3.8', '3.9', '3.x'] steps: - uses: actions/checkout@v3 - diff --git a/setup.py b/setup.py index 19f4e00..ecb3a5e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'Topic :: Utilities', ], - python_requires="~=3.6", + python_requires="~=3.8", install_requires=[ "ply>=3.4", "pycparser>=2.18,<=2.20",