Skip to content

Commit 2fb8418

Browse files
committed
Updated the version. Minor changes to make it easier to change the version.
1 parent 2d1796a commit 2fb8418

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

Pypredict.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[Desktop Entry]
22
Type=Application
33
Name=Pypredict
4-
Version=3.3.0
4+
Version=3.3.1
55
GenericName=Orbit propagator
66
Comment=Real-time satellite tracker and orbit propagator
77
Terminal=false

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ The following are some of the key features of Pypredict:
2020
* Displays the names, categories, position and orbital parameters in a table.
2121
* [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/).
2222

23-
Current version: 3.3.0
24-
2523
![](pypredict/img/Screenshot.png)
2624

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

4644
## Supported software
4745

48-
* [Python 3.6](https://www.python.org/downloads/) or later.
49-
* [Ubuntu 19.10](https://ubuntu.com/download/desktop) or later.
50-
* [Zorin OS Lite 15.2](https://zorinos.com/download/) or later.
51-
* [Raspbian Buster](https://www.raspberrypi.org/downloads/raspbian/) or later.
46+
* [Python](https://www.python.org/downloads/) 3.6 or later.
47+
* [Ubuntu](https://ubuntu.com/download/desktop) 19.10 or later.
48+
* [Zorin OS Lite](https://zorinos.com/download/) 15.2 or later.
49+
* [Raspbian](https://www.raspberrypi.org/downloads/raspbian/) Buster or later.
5250

5351
## Installation
5452

pypredict/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program. If not, see <https://www.gnu.org/licenses/>.
2222
"""
23-
__version__ = "3.3.0"
23+
__version__ = "3.3.1"
2424

2525
from cartopy.crs import Geodetic, PlateCarree
2626
from cartopy.geodesic import Geodesic
@@ -40,9 +40,9 @@
4040
from pypredict.SAA import SAA
4141
from pypredict.ui.main_window import Ui_MainWindow
4242
from pypredict.ui.about_dialog import Ui_About
43+
from pypredict.ui.addRemove_dialog import Ui_addRemove
4344
from pypredict.ui.dpl_dialog import Ui_DPL
4445
from pypredict.ui.updateTLE_dialog import Ui_updateTLE
45-
from pypredict.ui.addRemove_dialog import Ui_addRemove
4646

4747
class ApplicationWindow(QtWidgets.QMainWindow):
4848

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

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

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

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

0 commit comments

Comments
 (0)