Skip to content

Commit cbddf03

Browse files
committed
Bump version to 1.16.2, includes liblsl dependency bump.
1 parent 6b11606 commit cbddf03

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
types: [published]
66

77
env:
8-
LSL_RELEASE_URL: 'https://github.com/sccn/liblsl/releases/download/v1.16.1/'
9-
LSL_RELEASE: '1.16.1'
8+
LSL_RELEASE_URL: 'https://github.com/sccn/liblsl/releases/download/v1.16.2/'
9+
LSL_RELEASE: '1.16.2'
1010

1111
defaults:
1212
run:

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If the shared object is not installed onto a standard search path (or it is but
4646
* Use `python -m site` to find the "site-packages" path.
4747
* Use `cp -L` on platforms that use symlinks.
4848

49-
Alternatively, you can use an the environment variable. Set the `PYLSL_LIB` environment variable to the location of the library or set `LD_LIBRARY_PATH` to the folder containing the library. For example,
49+
Alternatively, you can use an environment variable. Set the `PYLSL_LIB` environment variable to the location of the library or set `LD_LIBRARY_PATH` to the folder containing the library. For example,
5050

5151
1. `PYLSL_LIB=/usr/local/lib/liblsl.so python -m pylsl.examples.{name-of-example}`, or
5252
2. `LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib python -m pylsl.examples.{name-of-example}`
@@ -56,6 +56,8 @@ Alternatively, you can use an the environment variable. Set the `PYLSL_LIB` envi
5656
## Continuous Integration
5757

5858
pylsl uses continuous integration and distribution. GitHub Actions will upload a new release to pypi whenever a Release is created in GitHub.
59+
Before creating the GitHub release, be sure to bump the version number in `pylsl/version.py` and consider updating the liblsl dependency
60+
in `.github/workflows/publish-to-pypi.yml`.
5961

6062
### Linux Binaries Deprecated
6163

@@ -76,7 +78,7 @@ We recently stopped building binary wheels for Linux. In practice, the `manylinu
7678

7779
# Known Issues with Multithreading on Linux
7880

79-
* At least for some versions of pylsl, is has been reported that running on Linux one cannot call ``pylsl`` functions from a thread that is not the main thread. This has been reported to cause access violations, and can occur during pulling from an inlet, and also from accessing an inlets info structure in a thread.
81+
* At least for some versions of pylsl, it has been reported that running on Linux one cannot call ``pylsl`` functions from a thread that is not the main thread. This has been reported to cause access violations, and can occur during pulling from an inlet, and also from accessing an inlets info structure in a thread.
8082
* Recent tests with mulithreading (especially when safeguarding library calls with locks) using Python 3.7.6. with pylsl 1.14 on Linux Mint 20 suggest that this issue is solved, or at least depends on your machine. See https://github.com/labstreaminglayer/pylsl/issues/29
8183

8284
# Acknowledgments

pylsl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.16.1'
1+
__version__ = '1.16.2'

0 commit comments

Comments
 (0)