Skip to content

Commit

Permalink
Updated the version. Minor changes to make it easier to change the ve…
Browse files Browse the repository at this point in the history
…rsion.
  • Loading branch information
matvidal committed May 14, 2020
1 parent 2d1796a commit 2fb8418
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Pypredict.desktop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Type=Application
Name=Pypredict
Version=3.3.0
Version=3.3.1
GenericName=Orbit propagator
Comment=Real-time satellite tracker and orbit propagator
Terminal=false
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ The following are some of the key features of Pypredict:
* Displays the names, categories, position and orbital parameters in a table.
* [Day](https://visibleearth.nasa.gov/images/73751/july-blue-marble-next-generation-w-topography-and-bathymetry) and [night](https://visibleearth.nasa.gov/images/144898/earth-at-night-black-marble-2016-color-maps) background images from [NASA](https://www.nasa.gov/).

Current version: 3.3.0

![](pypredict/img/Screenshot.png)

## Dependencies
Expand All @@ -45,10 +43,10 @@ The following are the current dependencies:

## Supported software

* [Python 3.6](https://www.python.org/downloads/) or later.
* [Ubuntu 19.10](https://ubuntu.com/download/desktop) or later.
* [Zorin OS Lite 15.2](https://zorinos.com/download/) or later.
* [Raspbian Buster](https://www.raspberrypi.org/downloads/raspbian/) or later.
* [Python](https://www.python.org/downloads/) 3.6 or later.
* [Ubuntu](https://ubuntu.com/download/desktop) 19.10 or later.
* [Zorin OS Lite](https://zorinos.com/download/) 15.2 or later.
* [Raspbian](https://www.raspberrypi.org/downloads/raspbian/) Buster or later.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions pypredict/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
__version__ = "3.3.0"
__version__ = "3.3.1"

from cartopy.crs import Geodetic, PlateCarree
from cartopy.geodesic import Geodesic
Expand All @@ -40,9 +40,9 @@
from pypredict.SAA import SAA
from pypredict.ui.main_window import Ui_MainWindow
from pypredict.ui.about_dialog import Ui_About
from pypredict.ui.addRemove_dialog import Ui_addRemove
from pypredict.ui.dpl_dialog import Ui_DPL
from pypredict.ui.updateTLE_dialog import Ui_updateTLE
from pypredict.ui.addRemove_dialog import Ui_addRemove

class ApplicationWindow(QtWidgets.QMainWindow):

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

here = path.abspath(path.dirname(__file__))
description = 'Real-time satellite tracker and orbit propagator'
version = '3.3.1'

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
Expand All @@ -27,7 +28,7 @@ def write_desktop_file():
f.write('[Desktop Entry]\n')
f.write('Type=Application\n')
f.write('Name=Pypredict\n')
f.write('Version=3.3.0\n')
f.write('Version={}\n'.format(version))
f.write('GenericName=Orbit propagator\n')
f.write('Comment={}\n'.format(description))
f.write('Terminal=false\n')
Expand Down Expand Up @@ -60,7 +61,7 @@ def write_desktop_file():
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='3.3.0', # Required
version=version, # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down

0 comments on commit 2fb8418

Please sign in to comment.