Skip to content

Commit 6b7d922

Browse files
author
Frank Odom
committed
Test on each push, add installation instructions to README
1 parent f701d9b commit 6b7d922

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Test
33
on:
44
workflow_dispatch: {}
55
push: {}
6-
release: {}
76

87
jobs:
98
test:

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ Implementation of 1D, 2D, and 3D FFT convolutions in PyTorch.
77
* Dependent on machine and PyTorch version.
88

99

10+
## Install
11+
12+
Using `pip`:
13+
```bash
14+
pip install fft-conv-pytorch
15+
```
16+
17+
From source:
18+
```bash
19+
git clone https://github.com/fkodom/fft-conv-pytorch.git
20+
cd fft-conv-pytorch
21+
pip install .
22+
```
23+
1024
### Example Usage
1125

1226
```python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_version_tag() -> str:
2626
long_description_content_type="text/markdown",
2727
install_requires=[
2828
"numpy",
29-
"torch>=1.7,<1.10",
29+
"torch>=1.7",
3030
],
3131
extras_require={
3232
"test": [

0 commit comments

Comments
 (0)