Skip to content

Commit

Permalink
drop python 3.7 support, min fsspec>=2022.2.0 (#224)
Browse files Browse the repository at this point in the history
* drop python 3.7 support

* update gcs paths
  • Loading branch information
isabelizimm authored Dec 18, 2023
1 parent f656dcc commit e7f8077
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11"]
os: ["ubuntu-latest"]
pytest_opts: ["--workers 4 --tests-per-worker 1"]
requirements: [""]
include:
- os: "ubuntu-latest"
python: "3.7"
python: "3.8"
requirements: "requirements/minimum.txt"
- os: "macos-latest"
python: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion pins/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
BOARD_CONFIG = {
"file": {"path": ["PINS_TEST_FILE__PATH", None]},
"s3": {"path": ["PINS_TEST_S3__PATH", "ci-pins"]},
"gcs": {"path": ["PINS_TEST_GCS__PATH", "ci-pins"]},
"gcs": {"path": ["PINS_TEST_GCS__PATH", "pins-python"]},
"abfs": {"path": ["PINS_TEST_AZURE__PATH", "ci-pins"]},
"rsc": {"path": ["PINS_TEST_RSC__PATH", RSC_SERVER_URL]},
}
Expand Down
3 changes: 1 addition & 2 deletions requirements/minimum.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
fsspec==0.8.0
pyyaml==3.13
fsspec==2022.2.0
xxhash==1.0.0
pandas==0.23.0
jinja2==2.10.0
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ author_email = [email protected]
license = MIT
keywords = data, tidyverse
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -23,9 +22,9 @@ packages = find:
include_package_data = True
zipsafe = False

python_requires = >=3.7
python_requires = >=3.8
install_requires =
fsspec>=0.8.0,<2023.9.0
fsspec>=2022.2.0,<2023.9.0
pyyaml>=3.13
xxhash>=1.0.0
pandas>=0.23.0
Expand Down

0 comments on commit e7f8077

Please sign in to comment.