Skip to content

Commit

Permalink
Merge pull request #236 from jnsebgosselin/release_0.3.3
Browse files Browse the repository at this point in the history
PR: Release v0.3.3
  • Loading branch information
jnsebgosselin committed Dec 12, 2018
2 parents 6b1484c + bc5aadc commit 94e8320
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 24 deletions.
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
init:
- ps: iex ((new-object net.webclient).DownloadString('https://github.com/raw/appveyor/ci/master/scripts/enable-rdp.ps1'))

branches:
only:
- master

environment:
COVERALLS_REPO_TOKEN:
secure: EWOwdKViJaHUARUcX4FHynz8eAlQxwWYLgWFg7C+MH1vgVlkBkMPYOSH4ysxs3kT
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# The short X.Y version.
version = '0.3'
# The full version, including alpha/beta/rc tags.
release = '0.3.2'
release = '0.3.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions gwhat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
import sys


version_info = (0, 3, 3, 'dev')
version_info = (0, 3, 3)
__version__ = '.'.join(map(str, version_info))
__appname__ = 'GWHAT'
__namever__ = __appname__ + " " + __version__
__date__ = '14/05/2018'
__date__ = '12/12/2018'
__project_url__ = "https://github.com/jnsebgosselin/gwhat"
__releases_url__ = __project_url__ + "/releases"
__releases_api__ = "https://github.com/gitapi/repos/jnsebgosselin/gwhat/releases"
Expand Down
18 changes: 9 additions & 9 deletions gwhat/ressources/WHAT_banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified gwhat/ressources/WHAT_banner_750px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified gwhat/ressources/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions gwhat/ressources/splash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed releases/GNU-GPLv3.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion releases/build_gwhat_on_windows.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
..\environment\Scripts\python.exe ..\..\PyInstaller\pyinstaller.py gwhat.spec
..\environment\Scripts\pyinstaller.exe gwhat.spec
pause
4 changes: 2 additions & 2 deletions releases/gwhat.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ added_files = [('../gwhat/ressources/splash.png', 'ressources'),
]

a = Analysis(['../gwhat/mainwindow.py'],
pathex=[],
pathex=['C:\\Program Files (x86)\\Windows Kits\\10\\Redist\\ucrt\\DLLs\\x64'],
binaries=[],
datas=added_files ,
hiddenimports=['h5py.defs', 'h5py.utils', 'h5py.h5ac', 'h5py._proxy', 'scipy.stats._continuous_distns', 'scipy._lib.messagestream'],
Expand Down Expand Up @@ -39,6 +39,6 @@ coll = COLLECT(exe,
upx=True,
name='GWHAT')

shutil.copyfile("GNU-GPLv3.pdf", "dist/GNU-GPLv3.pdf")
shutil.copyfile("../LICENSE", "dist/LICENSE")
shutil.copytree("Projects", "dist/Projects")
os.rename('dist', 'gwhat_'+__version__+'_win_amd64')

0 comments on commit 94e8320

Please sign in to comment.