Skip to content

Commit

Permalink
chore: Drop support for Python < 3.11 (Scientific Python Spec 0)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Oct 22, 2024
1 parent fde7722 commit b2c6ae1
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ _src_path: gh:edgarrmondragon/singer-tap-copier-template
author_email: edgarrm358@gmail.com
author_fullname: Edgar Ramírez-Mondragón
author_username: edgarrmondragon
python_main_version: '3.10'
python_main_version: '3.13'
repository_name: tap-canny
repository_namespace: edgarrmondragon
repository_provider: github.com
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
matrix:
script: ["test:integration"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-json
exclude: "\\.vscode/.*.json"
Expand All @@ -16,18 +16,18 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.2.1"
rev: "2.4.3"
hooks:
- id: pyproject-fmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.3
rev: v0.7.0
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
- id: ruff-format

- repo: https://github.com/pre-commit/pre-commit
rev: v3.8.0
rev: v4.0.1
hooks:
- id: validate_manifest
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
# `tap-canny`
<div align="center">

# tap-canny

<div>
<a href="https://scientific-python.org/specs/spec-0000/">
<img alt="SPEC 0 — Minimum Supported Dependencies" src="https://img.shields.io/badge/SPEC-0-green?labelColor=%23004811&color=%235CA038"/>
</a>
<a href="https://results.pre-commit.ci/latest/github/reservoir-data/tap-canny/main">
<img alt="pre-commit.ci status" src="https://results.pre-commit.ci/badge/github/reservoir-data/tap-canny/main.svg"/>
</a>
<a href="https://github.com/reservoir-data/tap-canny/blob/main/LICENSE">
<img alt="License" src="https://img.shields.io/github/license/reservoir-data/tap-canny"/>
</a>
</div>

Singer tap for [Canny](https://canny.io/), a feedback management platform..

Built with the [Meltano Singer SDK](https://sdk.meltano.com).

</div>

## Capabilities

* `catalog`
Expand Down
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [
[project]
name = "tap-canny"
version = "0.0.1"
description = "`tap-canny` is a Singer tap for Canny, built with the Meltano SDK for Singer Taps."
description = "Singer tap for Canny, built with the Meltano SDK for Singer Taps."
readme = "README.md"
keywords = [
"Canny",
Expand All @@ -21,12 +21,9 @@ maintainers = [
authors = [
{ name = "Edgar Ramírez-Mondragón", email = "edgarrm358@gmail.com" },
]
requires-python = ">=3.8"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"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 :: 3.13",
Expand Down Expand Up @@ -136,7 +133,6 @@ filterwarnings = [
xfail_strict = true

[tool.mypy]
python_version = "3.12"
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
Expand Down

0 comments on commit b2c6ae1

Please sign in to comment.