forked from poliastro/poliastro
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
255 changed files
with
1,675 additions
and
2,974 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ jobs: | |
steps: | ||
- uses: readthedocs/actions/preview@v1 | ||
with: | ||
project-slug: "poliastro" | ||
project-slug: "hapsira" |
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,67 @@ | ||
name: hapsira test suite | ||
|
||
on: | ||
push: {} | ||
schedule: | ||
- cron: '30 9 7 * *' | ||
|
||
jobs: | ||
|
||
specifics: | ||
strategy: | ||
matrix: | ||
tox-env: [ | ||
"fast", | ||
"online", | ||
"slow", | ||
"images" | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
- name: Update Python infrastructure | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U tox | ||
- name: Versions | ||
run: | ||
python --version | ||
tox --version | ||
- name: Run tests | ||
run: | | ||
tox -e tests38-${{ matrix.tox-env }} | ||
build: | ||
strategy: | ||
matrix: | ||
python-version: [ | ||
"3.8", | ||
"3.9", | ||
"3.10", | ||
"3.11" | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install pandoc | ||
run: | | ||
sudo apt-get install -y pandoc | ||
- name: Install Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Update Python infrastructure | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U tox | ||
- name: Versions | ||
run: | ||
python --version | ||
tox --version | ||
- name: Run tests | ||
run: | | ||
tox |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Authors | ||
|
||
Originally devised and implemented by [Juan Luis Cano Rodríguez](mailto:[email protected]). | ||
Core developer: | ||
|
||
- [Sebastian M. Ernst](mailto:[email protected]) | ||
|
||
# Maintainers | ||
Contributors, in alphabetical order: | ||
|
||
poliastro is maintained thanks to: | ||
- (TBD) | ||
|
||
* [Juan Luis Cano Rodríguez](mailto:[email protected]) | ||
* [Jorge Martinez Garrido](mailto:[email protected]) | ||
## Original Authors 2012 - 2023 | ||
|
||
This project began as a fork of `poliastro`, which was implemented and maintained by [Juan Luis Cano Rodríguez](mailto:[email protected]) and [Jorge Martinez Garrido](mailto:[email protected]). |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.