Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release -> main (v0.2.0) #187

Merged
merged 2 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -30,19 +30,21 @@
"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",
"paseos.thermal",
"paseos.utils",
"paseos.visualization",
],
python_requires=">=3.8,<3.9",
python_requires=">=3.8",
project_urls={
"Source": "https://github.com/aidotse/paseos/",
},
Expand Down
Loading