Skip to content

Commit 6d50cc1

Browse files
Merge pull request #19 from streamlit/pin-gspread
gspread 6.0 is not compatible with the latest version of gspread-data…
2 parents ff753bc + ee6bbee commit 6d50cc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- name: Lint with ruff
2828
run: |
2929
# stop the build if there are Python syntax errors or undefined names
30-
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
30+
ruff --select=E9,F63,F7,F82 --target-version=py39 .
3131
# default set of ruff rules with GitHub Annotations
32-
ruff --format=github --target-version=py37 .
32+
ruff --target-version=py39 .
3333
- name: Check types with mypy
3434
run: |
3535
mypy --ignore-missing-imports .

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import setuptools
22

3-
VERSION = "0.0.3" # PEP-440
3+
VERSION = "0.0.4" # PEP-440
44

55
NAME = "st-gsheets-connection"
66

77
INSTALL_REQUIRES = [
88
"streamlit>=1.22.0",
9-
"gspread>=5.8.0",
9+
"gspread>=5.8.0, <6",
1010
"gspread-pandas>=3.2.2",
1111
"gspread-dataframe>=3.3.0",
1212
"gspread-formatting>=1.1.2",

0 commit comments

Comments
 (0)