Skip to content

Commit 29c0ed6

Browse files
authored
Update workflows due to upstream updates. (#138)
* Update workflows due to upstream updates. Future work: Unpin numpy version and pin docformatter.
1 parent c25e191 commit 29c0ed6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ repos:
5555

5656
# python docstring formatting
5757
- repo: https://github.com/myint/docformatter
58-
rev: v1.7.5
58+
rev: master
5959
hooks:
6060
- id: docformatter
6161
require_serial: true

runner-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pytest # tests
3838
# --------- pkg reqs -------- #
3939
lightning-bolts
4040
matplotlib
41-
numpy
41+
numpy<2.0.0 # Due to pandas incompatibility
4242
scipy
4343
scikit-learn
4444
scprep

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"torchvision>=0.11.0",
1010
"lightning-bolts",
1111
"matplotlib",
12-
"numpy",
12+
"numpy<2.0.0", # Due to pandas incompatibility
1313
"scipy",
1414
"scikit-learn",
1515
"scprep",

0 commit comments

Comments
 (0)