-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Explain how to deal with the prepared databases as a contributor * Add helper script to download all sqlite databases * Drop dangerous test that gamble with floating point accuracy * Stop tracking SQLITE files as github is expensive * Set version number to 2.1.1 * Move JupyterLab out of dev, simplify jupyterlab target * Restrict several package versions and explicitly mention sphinx-tabs to improve pip version resolution * Use windows-2019 instead of windows-latest in GitHub CI - see speed issues in actions/runner-images#5166
- Loading branch information
Showing
11 changed files
with
67 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ authors: | |
email: [email protected] | ||
affiliation: Hamburg University of Technology (TUHH), Institute of Maritime Logistics | ||
orcid: 'https://orcid.org/0000-0003-1982-9436' | ||
version: 2.0.1 | ||
version: 2.1.1 | ||
repository-code: "https://github.com/1kastner/conflowgen" | ||
keywords: | ||
- logistics | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Do not show the progress bar during download | ||
$ProgressPreference = 'SilentlyContinue' | ||
|
||
# Describe metadata for download operation | ||
$sqlite_databases = "demo_continental_gateway", "demo_deham_cta", "demo_poc" | ||
$web_root_directory = "https://media.tuhh.de/mls/software/conflowgen/docs/data/prepared_dbs/" | ||
$local_prepared_db_root_directory = "./notebooks/data/prepared_dbs" | ||
|
||
# Actually execute the download | ||
foreach ($db in $sqlite_databases) { | ||
$source_url = "$($web_root_directory)$($db).sqlite" | ||
$target_path = "$($local_prepared_db_root_directory)/$($db).sqlite" | ||
Write-Output "Download $source_url and save it at $target_path" | ||
Invoke-WebRequest $source_url -OutFile $target_path | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters