Skip to content

Commit 6543868

Browse files
committed
Require torch>=1.8 after kronecker delta updates for dilation.
1 parent c3a5260 commit 6543868

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
python: ["3.7", "3.8", "3.9"]
16-
torch: ["1.7", "1.8", "1.9", "1.10"]
16+
torch: ["1.8", "1.9", "1.10"]
1717

1818
steps:
1919
- name: Checkout

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_version_tag() -> str:
2424
description="Implementation of 1D, 2D, and 3D FFT convolutions in PyTorch.",
2525
long_description=open("README.md").read(),
2626
long_description_content_type="text/markdown",
27-
install_requires=["numpy", "torch>=1.7"],
27+
install_requires=["numpy", "torch>=1.8"],
2828
extras_require={"test": ["black", "flake8", "isort", "pytest", "pytest-cov"]},
2929
classifiers=[
3030
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)