Skip to content

Commit 5800286

Browse files
committed
Fix MANIFEST.in including vkfft_cuda.cu for python setup.py sdist.
Version 2023.1.1
1 parent b885212 commit 5800286

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 2023.1.1 (2023-01-22)
2+
-----------------------------
3+
* Fix MANIFEST.in including vkfft_cuda.cu for python setup.py sdist
4+
15
Version 2023.1 (2023-01-19)
26
-----------------------------
37
* VkFFT 1.2.33, now using Rader algorithm for better performance

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
include src/vkFFT.h
2+
include src/*.cu
3+
include src/*.cpp
24
include LICENSE LICENSE_VkFFT README_VkFFT.md

pyvkfft/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
__authors__ = ["Vincent Favre-Nicolin (pyvkfft), Dmitrii Tolmachev (VkFFT)"]
44
__license__ = "MIT"
5-
__date__ = "2023/01/19"
5+
__date__ = "2023/01/22"
66
# Valid numbering includes 3.1, 3.1.0, 3.1.2, 3.1dev0, 3.1a0, 3.1b0
7-
__version__ = "2023.1"
7+
__version__ = "2023.1.1"
88

99

1010
def vkfft_version():

0 commit comments

Comments
 (0)