Skip to content

Commit

Permalink
Refs #1, Fix URL for download that was missing and, minor corrections…
Browse files Browse the repository at this point in the history
… on comments and README.md and change of the version to a -rc one
  • Loading branch information
stdevPavelmc committed Feb 20, 2019
1 parent 443a766 commit 53bfdf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The preferred method to configure & flash skybian images is by using this GUI to

### Installing

To install this tool, go to the releases tab on this page and grab the file corresponding to your OS, use the following table to figure it out:
To install this tool, go to the [Releases](https://github.com/skycoin/skyflash/releases) link on this page and grab the file corresponding to your OS, use the following table to figure it out:

| Operating System | You must download the one... |
|:----------------:|:--------------------------------:|
Expand Down
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='skyflash',
version="0.0.3",
version="0.0.3-rc",
description='Skycoin Skyminer\'s OS configuring and flashing',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -63,13 +63,7 @@
# https://packaging.python.org/en/latest/requirements.html
# install_requires=['python3-pyqt5'],

# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# `pip` to create the appropriate form of executable for the target
# platform.
#
# For example, the following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
# To provide executable scripts, in this case a gui app
entry_points={
'gui_scripts': [
'skyflash = skyflash:app',
Expand Down
3 changes: 3 additions & 0 deletions skyflash/skyflash.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
imageConfigAddress = 3670016
imageConfigDataSize = 256

# skybian URL
skybianUrl = "https://github.com/simelo/skybian/releases/download/0.1.0-alpha/Skybian-0.1.0-alpha.tar.xz"

# OS dependent imports for windows.
if sys.platform in ["win32", "cygwin"]:
import ctypes
Expand Down

0 comments on commit 53bfdf5

Please sign in to comment.