Skip to content

Commit e7f8077

Browse files
authored
drop python 3.7 support, min fsspec>=2022.2.0 (#224)
* drop python 3.7 support * update gcs paths
1 parent f656dcc commit e7f8077

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
23+
python: ["3.8", "3.9", "3.10", "3.11"]
2424
os: ["ubuntu-latest"]
2525
pytest_opts: ["--workers 4 --tests-per-worker 1"]
2626
requirements: [""]
2727
include:
2828
- os: "ubuntu-latest"
29-
python: "3.7"
29+
python: "3.8"
3030
requirements: "requirements/minimum.txt"
3131
- os: "macos-latest"
3232
python: "3.10"

pins/tests/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
BOARD_CONFIG = {
2525
"file": {"path": ["PINS_TEST_FILE__PATH", None]},
2626
"s3": {"path": ["PINS_TEST_S3__PATH", "ci-pins"]},
27-
"gcs": {"path": ["PINS_TEST_GCS__PATH", "ci-pins"]},
27+
"gcs": {"path": ["PINS_TEST_GCS__PATH", "pins-python"]},
2828
"abfs": {"path": ["PINS_TEST_AZURE__PATH", "ci-pins"]},
2929
"rsc": {"path": ["PINS_TEST_RSC__PATH", RSC_SERVER_URL]},
3030
}

requirements/minimum.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
fsspec==0.8.0
2-
pyyaml==3.13
1+
fsspec==2022.2.0
32
xxhash==1.0.0
43
pandas==0.23.0
54
jinja2==2.10.0

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ author_email = [email protected]
1111
license = MIT
1212
keywords = data, tidyverse
1313
classifiers =
14-
Programming Language :: Python :: 3.7
1514
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
@@ -23,9 +22,9 @@ packages = find:
2322
include_package_data = True
2423
zipsafe = False
2524

26-
python_requires = >=3.7
25+
python_requires = >=3.8
2726
install_requires =
28-
fsspec>=0.8.0,<2023.9.0
27+
fsspec>=2022.2.0,<2023.9.0
2928
pyyaml>=3.13
3029
xxhash>=1.0.0
3130
pandas>=0.23.0

0 commit comments

Comments
 (0)