Skip to content

Commit

Permalink
Bump minimum required Python version to 3.8 and remove upper constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Jul 12, 2024
1 parent de2dba4 commit 6e5ba12
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 66 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![test](https://github.com/matatika/tap-google-sheets/actions/workflows/ci_workflow.yml/badge.svg)](https://github.com/matatika/tap-google-sheets/actions/workflows/ci_workflow.yml)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
<a href="https://github.com/Matatika/tap-google-sheets/blob/master/LICENSE"><img alt="GitHub license" src="https://img.shields.io/github/license/Matatika/tap-google-sheets"></a>
[![Python](https://img.shields.io/static/v1?logo=python&label=python&message=3.7%20|%203.8%20|%203.9&color=blue)]()
[![Python version](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2FMatatika%2Ftap-google-sheets%2Fmaster%2Fpyproject.toml&query=tool.poetry.dependencies.python&label=python)](https://docs.python.org/3/)

This Google Sheets tap produces JSON-formatted data following the Singer spec.

Expand Down
67 changes: 4 additions & 63 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = [
license = "GNU Affero General Public License v3.0"

[tool.poetry.dependencies]
python = "<3.13,>=3.7.1"
python = "^3.8"
requests = "^2.31.0"
singer-sdk = "^0.34.1"
click = "8.0.1"
Expand Down

0 comments on commit 6e5ba12

Please sign in to comment.