From 45fc616bd6096b3617d18c07ee4ad764a6fc2365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20G=C3=B3mez?= Date: Mon, 14 Aug 2023 13:24:45 +0200 Subject: [PATCH 1/2] Update setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38d1435..efcfb7a 100644 --- a/setup.py +++ b/setup.py @@ -30,11 +30,13 @@ "Topic :: Scientific/Engineering :: Mathematics", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], packages=[ "paseos", "paseos.activities", "paseos.actors", + "paseos.central_body", "paseos.communication", "paseos.power", "paseos.radiation", @@ -42,7 +44,7 @@ "paseos.utils", "paseos.visualization", ], - python_requires=">=3.8,<3.9", + python_requires=">=3.8", project_urls={ "Source": "https://github.com/aidotse/paseos/", }, From 4a8d2697a2d40e926a8988d1040b3f1ac2a298ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20G=C3=B3mez?= Date: Mon, 14 Aug 2023 13:29:09 +0200 Subject: [PATCH 2/2] Update version number --- docs/source/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c24f419..ba8ddc4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = "Pablo Gómez, Gabriele Meoni, Johan Östman, Vinutha Magal Shreenath" # The full version, including alpha/beta/rc tags -release = "v0.1.3" +release = "v0.2.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index efcfb7a..467eab7 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="paseos", - version="0.1.3", + version="0.2.0", description="A package which simulates the space environment for operating multiple spacecraft.", long_description=open("README.md").read(), long_description_content_type="text/markdown",