Skip to content

Commit f55cad3

Browse files
chore: Clean up (#338)
1 parent bb91205 commit f55cad3

File tree

6 files changed

+8
-23
lines changed

6 files changed

+8
-23
lines changed

.github/workflows/test_tap.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: snok/install-poetry@v1
6565
with:
6666
# Version of Poetry to use
67-
version: 1.8.4
67+
version: 1.8.5
6868
virtualenvs-create: true
6969
virtualenvs-in-project: true
7070
- name: Set up Python ${{ matrix.python-version }}

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ repos:
1616

1717

1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.8.1
19+
rev: v0.8.5
2020
hooks:
2121
- id: ruff
2222
args: [ --fix ]
2323
- id: ruff-format
2424

2525
- repo: https://github.com/pre-commit/mirrors-mypy
26-
rev: v1.13.0
26+
rev: v1.14.1
2727
hooks:
2828
- id: mypy
2929
pass_filenames: true

meltano.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
version: 1
22
send_anonymous_usage_stats: false
33
project_id: 96584f7b-a36c-46e0-b41a-7f9074293137
4+
venv:
5+
backend: uv
46
plugins:
57
extractors:
68
- name: tap-github

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "tap-github"
3-
version = "1.4.2"
3+
version = "1.9.0"
44
description = "`tap-github` is Singer tap for GitHub, built with the Singer SDK."
55
authors = ["Meltano and Meltano Community"]
66
homepage = "https://github.com/MeltanoLabs/tap-github"
77
repository = "https://github.com/MeltanoLabs/tap-github"
8-
license = "Apache 2.0"
8+
license = "Apache-2.0"
99
keywords = ["Meltano", "Singer", "Meltano SDK", "Singer SDK", "ELT", "Github"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

tap-github.sh

-14
This file was deleted.

tox.ini

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = true
3-
envlist = py3{8,9,10,11,12}
3+
envlist = py3{9,10,11,12,13}
44

55
[testenv]
66
whitelist_externals = poetry
@@ -14,6 +14,3 @@ ignore = W503
1414
max-line-length = 88
1515
exclude = cookiecutter
1616
max-complexity = 10
17-
18-
[pydocstyle]
19-
ignore = D105,D203,D213

0 commit comments

Comments
 (0)