Skip to content
Open
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 .github/workflows/download_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: 3.11
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
24 changes: 12 additions & 12 deletions bin/download_scopesim_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,18 @@ poetry install --with=test,docs
poetry update --with=test,docs
popd

git clone https://github.com/AstarVienna/irdb.git
pushd irdb
# irdb doesn't use poetry yet
pip install -r requirements.github_actions.txt
popd

git clone https://github.com/AstarVienna/ScopeSim_Templates.git
pushd ScopeSim_Templates
poetry install --with=test,docs
poetry update --with=test,docs
popd

git clone https://github.com/AstarVienna/ScopeSim.git
pushd ScopeSim
poetry install --with=test,dev,docs
Expand All @@ -93,18 +105,6 @@ poetry install --with=test,docs
poetry update --with=test,docs
popd

git clone https://github.com/AstarVienna/ScopeSim_Templates.git
pushd ScopeSim_Templates
poetry install --with=test,dev,docs
poetry update --with=test,dev,docs
popd

git clone https://github.com/AstarVienna/irdb.git
pushd irdb
# irdb doesn't use poetry yet
pip install -r requirements.github_actions.txt
popd

# poetry update will upgrade only to the latest versions that are released.
# The packages will therefore downgrade each other.
# But ScopeSim_Data should use the latest version of all our projects
Expand Down
Loading