File tree Expand file tree Collapse file tree 12 files changed +61
-200
lines changed Expand file tree Collapse file tree 12 files changed +61
-200
lines changed Original file line number Diff line number Diff line change 1
1
v1.2.2
2
2
======
3
+ From now one, python 2.7 is not supported anymore.
4
+
3
5
Added
4
6
-----
5
7
- Added the possibility to change the central widget of the GUI
6
8
- Added `remove_plugin ` method for psyplot GUI plugins
7
9
10
+ Changed
11
+ -------
12
+ - removed MacOS app folder in python dist
13
+
8
14
v1.2.1
9
15
======
10
16
monkey patch for ipykernel < 5.1.1 to fix
Original file line number Diff line number Diff line change @@ -4,8 +4,3 @@ include psyplot_gui/sphinx_supp/_static/*
4
4
include psyplot_gui/sphinx_supp/conf.py
5
5
include psyplot_gui/sphinx_supp/psyplot.rst
6
6
include psyplot_gui/icons/*.png
7
- include psyplot_gui/app/*
8
- include psyplot_gui/app/Psyplot.app/*
9
- include psyplot_gui/app/Psyplot.app/Contents/*
10
- include psyplot_gui/app/Psyplot.app/Contents/Resources/*
11
- include psyplot_gui/app/Psyplot.app/Contents/MacOS/*
Original file line number Diff line number Diff line change 1
- rd /s /q psyplot_gui\app\Psyplot.app
2
-
3
- %PYTHON% setup.py install --single-version-externally-managed --record record.txt
4
- if errorlevel 1 exit 1
5
-
6
- set MENU_DIR = %PREFIX% \Menu
7
- IF NOT EXIST (%MENU_DIR% ) mkdir %MENU_DIR%
8
-
9
- copy %RECIPE_DIR% \psyplot.ico %MENU_DIR% \psyplot.ico
10
- if errorlevel 1 exit 1
11
-
12
- copy %RECIPE_DIR% \menu-windows.json %MENU_DIR% \psyplot_shortcut.json
13
- if errorlevel 1 exit 1
1
+ %PYTHON% -m pip install . --no-deps --ignore-installed -vvv
2
+ if errorlevel 1 exit 1
3
+
4
+ set MENU_DIR = %PREFIX% \Menu
5
+ IF NOT EXIST (%MENU_DIR% ) mkdir %MENU_DIR%
6
+
7
+ copy %RECIPE_DIR% \psyplot.ico %MENU_DIR% \psyplot.ico
8
+ if errorlevel 1 exit 1
9
+
10
+ copy %RECIPE_DIR% \menu-windows.json %MENU_DIR% \psyplot_shortcut.json
11
+ if errorlevel 1 exit 1
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- $PYTHON setup.py install --single-version-externally-managed --record record.txt
4
-
5
- BIN=$PREFIX /bin
6
-
7
- if [[ ` uname` == Darwin ]]; then
8
- mv psyplot_gui/app/Psyplot.app $PREFIX /psyplotapp
9
- sed -i ' ' " s/0.01/$PKG_VERSION /" $PREFIX /psyplotapp/Contents/Info.plist
10
-
11
- AE=$PREFIX /psyplotapp/Contents/MacOS/run.sh
12
-
13
- chmod +x $AE
14
-
15
- POST_LINK=$BIN /.psyplot-gui-post-link.sh
16
- PRE_UNLINK=$BIN /.psyplot-gui-pre-unlink.sh
17
- cp $RECIPE_DIR /osx-post.sh $POST_LINK
18
- cp $RECIPE_DIR /osx-pre.sh $PRE_UNLINK
19
- chmod +x $POST_LINK $PRE_UNLINK
20
-
21
- else # not Darwin
22
- rm -rf psyplot_gui/app/Psyplot.app
23
- fi
3
+ $PYTHON -m pip install . --no-deps --ignore-installed -vvv
Original file line number Diff line number Diff line change
1
+ {% set name = "psyplot-gui" %}
2
+ {% set version = "1.2.2" %}
3
+
1
4
package :
2
- name : psyplot-gui
3
- version : 1.2.2.dev0
4
- app :
5
- entry : psyplot
6
- icon : logo.png
7
- summary : Psyplot visualization software
8
- type : desk
5
+ name : {{ name|lower }}
6
+ version : {{ version }}
7
+
8
+ source :
9
+ path : ../..
10
+
11
+ build :
12
+ number : 0
13
+
9
14
requirements :
10
15
build :
11
- - python
12
- - setuptools
16
+ - python
17
+ - pip
13
18
run :
14
- - python
15
- - psyplot
16
- - qtconsole
17
- - fasteners
18
- - sphinx
19
- - sphinx_rtd_theme
20
- source :
21
- path : ../..
19
+ - python
20
+ - psyplot
21
+ - qtconsole
22
+ - fasteners
23
+ - sphinx
24
+ - sphinx_rtd_theme
25
+
22
26
test :
27
+ commands :
28
+ - psyplot --help
23
29
imports :
24
- - psyplot_gui
25
- - psyplot_gui.compat
26
- - psyplot_gui.config
27
- - psyplot_gui.sphinx_supp
30
+ - psyplot_gui
31
+ - psyplot_gui.compat
32
+ - psyplot_gui.config
33
+ - psyplot_gui.sphinx_supp
34
+
35
+ app :
36
+ entry : psyplot
37
+ icon : logo.png
38
+ summary : Psyplot visualization software
39
+ type : desk
40
+
28
41
about :
29
- description : ' psyplot is an interactive python visualization framework for
30
- multi-dimensional data. Being easy scriptable, it can also be used through
31
- a graphical user interface.'
32
- dev_url : https://github.com/Chilipp/psyplot-gui
33
- doc_url : http://psyplot.readthedocs.io/projects/psyplot-gui
34
42
home : https://github.com/Chilipp/psyplot-gui
35
- license : GNU General Public License v2 (GPLv2)
36
- license_family : GPL2
43
+ license : GPL-2.0
44
+ license_family : GPL
37
45
license_file : LICENSE
38
46
summary : Graphical user interface for the psyplot package
47
+
48
+ description : |
49
+ This package provides a graphical user interface to interact with the
50
+ psyplot framework.
51
+ doc_url : http://psyplot.readthedocs.io/projects/psyplot-gui
52
+ dev_url : https://github.com/Chilipp/psyplot-gui
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments