From 7e0d9cebdd94fef33ad30e62f76c4318334d0443 Mon Sep 17 00:00:00 2001 From: David Kane Date: Tue, 9 Jan 2024 22:09:55 +0000 Subject: [PATCH] support for python 3.7 removed. Support for 3.12 added. --- .github/workflows/testing.yml | 27 +++++++++++++-------------- pyproject.toml | 4 ++-- src/airtable_to_sqlite/__about__.py | 2 +- 3 files changed, 16 insertions(+), 17 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7f629e6..74864fd 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -4,23 +4,22 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest strategy: max-parallel: 4 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: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - cache: pip - - name: Install dependencies - run: | - pip install -e . - pip install hatch - - name: Run tests - run: hatch run cov-fail \ No newline at end of file + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + cache: pip + - name: Install dependencies + run: | + pip install -e . + pip install hatch + - name: Run tests + run: hatch run cov-fail diff --git a/pyproject.toml b/pyproject.toml index dc6613d..567f8fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,11 +14,11 @@ authors = [{ name = "David Kane", email = "david@dkane.net" }] classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python", - "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", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] @@ -59,7 +59,7 @@ cov-html = [ ] [[tool.hatch.envs.all.matrix]] -python = ["3.7", "3.8", "3.9", "3.10", "3.11"] +python = ["3.8", "3.9", "3.10", "3.11", "3.12"] [tool.hatch.envs.lint] detached = true diff --git a/src/airtable_to_sqlite/__about__.py b/src/airtable_to_sqlite/__about__.py index d698d3f..0bd9a6c 100644 --- a/src/airtable_to_sqlite/__about__.py +++ b/src/airtable_to_sqlite/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present David Kane # # SPDX-License-Identifier: MIT -__version__ = "0.2.0" +__version__ = "0.2.1"