Skip to content

Commit a552899

Browse files
authored
Remove version file (mne-tools#217)
1 parent fdc9ac7 commit a552899

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.git_archival.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node: $Format:%H$
2+
node-date: $Format:%cI$
3+
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
4+
ref-names: $Format:%D$

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.git_archival.txt export-subst

.github/workflows/qt_viz_tests.yml

-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ jobs:
2121
name: [matrix]
2222
pip: ['']
2323
include:
24-
- os: ubuntu
25-
mne: main
26-
opengl: 'opengl'
27-
python: '3.8'
28-
name: old 3.8
2924
- os: ubuntu
3025
mne: main
3126
opengl: ''

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@ or
2424
conda install -c conda-forge mne-base matplotlib mne-qt-browser
2525
```
2626

27+
## Update
28+
Refer to the [MNE-Python documentation](https://mne.tools/stable/install/updating.html) for updating MNE-Python.
29+
To update this package, do:
30+
```
31+
pip install -U mne-qt-browser
32+
```
33+
To update this package to the development version, do:
34+
```
35+
pip install -U --no-deps https://github.com/mne-tools/mne-qt-browser/archive/refs/heads/main.zip
36+
```
37+
2738
## Usage
2839

2940
The backend supports plotting for the following MNE-Python methods:

mne_qt_browser/__init__.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33

44
__version__ = version("mne_qt_browser")
55
except Exception:
6-
try:
7-
from ._version import __version__ # written by setuptools_scm
8-
except ImportError:
9-
__version__ = "0.0.0"
6+
__version__ = "0.0.0"
107

118
# All created brower-instances are listed here for a reference to avoid having
129
# them garbage-collected prematurely.

0 commit comments

Comments
 (0)