Skip to content

Commit 43f58ae

Browse files
committed
Update of README.rst and version bump
1 parent 458c8f5 commit 43f58ae

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@ Sound Field Analysis toolbox for Python
33
.. image:: https://api.travis-ci.org/QULab/sound_field_analysis-py.svg
44
.. image:: https://ci.appveyor.com/api/projects/status/u0koxo5vcitmbghc?svg=true
55

6-
The *sound\_field\_analysis* toolbox (short: *sfa*) is a Python port of the `Sound Field Analysis
7-
Toolbox (SOFiA) toolbox`_, originally by Benjamin Bernschütz `[1]`_. The main goal of the *sfa*
8-
toolbox is to analyze, visualize and process sound field data recorded by spherical microphone
9-
arrays. Furthermore, various types of test-data may be generated to evaluate the implemented
10-
functions. It is an essential building block of `ReTiSAR`_, an implementation of real time
11-
binaural rendering of spherical microphone array data.
6+
The *sound\_field\_analysis* toolbox (short: *sfa*) is a Python port of the `Sound Field Analysis Toolbox (SOFiA) toolbox`_, originally by Benjamin Bernschütz `[1]`_. The main goal of the *sfa* toolbox is to analyze, visualize and process sound field data recorded by spherical microphone arrays. Furthermore, various types of test-data may be generated to evaluate the implemented functions. It is an essential building block of `ReTiSAR`_, an implementation of real time binaural rendering of spherical microphone array data.
127

138

149
Requirements
1510
------------
1611

17-
We use Python 3.7 for development. Chances are that earlier version will work too but this is currently untested.
12+
We use Python 3.9 for development. Chances are that earlier version will work too but this is currently untested.
1813

1914
The following external libraries are required:
2015

@@ -110,6 +105,10 @@ miro or `SOFA`_ files.
110105
Version history
111106
---------------
112107

108+
*v2021.1.12*
109+
* Update of MIRO struct loading (quadrature weights are now optional)
110+
* Fix to prevent Python 3.8 syntax warnings
111+
113112
*v2020.1.30*
114113
* Update of README and PyPI package
115114

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
setup(
44
name='sound_field_analysis',
55
url='https://github.com/AppliedAcousticsChalmers/sound_field_analysis-py/',
6-
version=open('sound_field_analysis/_version.py').readlines()[-1].split()[-1].strip('"\''),
6+
version=open('sound_field_analysis/_version.py', mode='r',
7+
encoding='utf-8').readlines()[-1].split()[-1].strip('"\''),
78
license='GPLv3',
8-
# license='MIT',
99

10-
description='Analyze, visualize and process sound field data recorded by spherical microphone arrays.',
10+
description='Analyze, visualize and process sound field data recorded by '
11+
'spherical microphone arrays.',
1112
long_description=open('README.rst', mode='r', encoding='utf-8').read(),
1213
keywords='sound field analysis spherical microphone array',
1314

sound_field_analysis/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version information."""
2-
__version__ = '2020.1.30'
2+
__version__ = '2021.1.12'

0 commit comments

Comments
 (0)