We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e8d4f2 + c2f340f commit b647b8fCopy full SHA for b647b8f
.pre-commit-config.yaml
@@ -20,7 +20,7 @@ repos:
20
- id: pyupgrade
21
args: [--py38-plus]
22
- repo: https://github.com/psf/black-pre-commit-mirror
23
- rev: 24.3.0
+ rev: 24.4.0
24
hooks:
25
- id: black
26
- repo: https://github.com/PyCQA/flake8
pyproject.toml
@@ -23,7 +23,9 @@ requires = [
"lru_dict",
"pillow",
"numpy",
- "pandas",
+ # Pandas 2.2.2 doesn't publish ARM64 macOS wheels for Py 3.9 or 3.10
27
+ "pandas != 2.2.2; python_version < '3.11'",
28
+ "pandas; python_version >= '3.11'"
29
]
30
test_requires = [
31
"pytest",
0 commit comments