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

Implement logarithmic law? #6

Open
wants to merge 51 commits into
base: pylightcurve-3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
b92bccd
Update README.md
atsiaras Jan 31, 2021
ee999fa
Update test_analysis_distributions.py
atsiaras Jan 31, 2021
22666b2
fixed readme
atsiaras Jan 31, 2021
a285126
Update README.md
atsiaras Jan 31, 2021
161933f
Update __author_email__.txt
atsiaras Jan 31, 2021
90ffd34
manifest
atsiaras Jan 31, 2021
826edb7
load new database in memory
atsiaras May 7, 2021
7cc40e4
Update README.md
atsiaras May 7, 2021
f08d57e
new ecc
atsiaras Nov 18, 2021
936d247
avoid database update loop
atsiaras Nov 18, 2021
3118c19
Update test_catalogues.py
atsiaras Nov 18, 2021
e8d411e
Update requirements.txt
atsiaras Nov 18, 2021
6cce0ed
Update requirements.txt
atsiaras Nov 18, 2021
e6e363d
travis issue with astropy
atsiaras Nov 18, 2021
1ed73d7
astropy again
atsiaras Nov 18, 2021
5767fa5
astropy again
atsiaras Nov 19, 2021
42f7950
new version
atsiaras Nov 19, 2021
54af231
Update __databases__.pickle
atsiaras Nov 25, 2021
1730b5d
new ecc
atsiaras Feb 20, 2022
3e3ec10
Update __databases__.pickle
atsiaras Feb 20, 2022
04daa96
Update __databases__.pickle
atsiaras Feb 20, 2022
6e5a306
Update __databases__.pickle
atsiaras Feb 20, 2022
844420f
Update __databases__.pickle
atsiaras Mar 7, 2022
b2236a2
Update __databases__.pickle
atsiaras Mar 7, 2022
1e21e42
Update __databases__.pickle
atsiaras Mar 7, 2022
aa3bc66
Update __databases__.pickle
atsiaras Mar 13, 2022
bc1f949
Update __databases__.pickle
atsiaras Apr 4, 2022
a6a6af6
Update __databases__.pickle
atsiaras May 1, 2022
dca4557
Update __databases__.pickle
atsiaras Jun 26, 2022
8e0401c
fix star names
atsiaras Sep 8, 2022
f077092
Update optimisation.py
atsiaras Sep 10, 2022
9c89970
Update .travis.yml
atsiaras Sep 10, 2022
18e0761
Update test_analysis_optimisation.py
atsiaras Sep 10, 2022
403e046
Update exoplanet_lc.py
atsiaras Sep 10, 2022
000717a
New planets
atsiaras Nov 7, 2022
fccc462
New planets pickle format
atsiaras Nov 7, 2022
85eb664
fix catalogues
atsiaras Nov 7, 2022
61aeaea
fix ut
atsiaras Nov 7, 2022
c02043c
fix database handler
atsiaras Nov 7, 2022
7a57af3
update database
atsiaras Dec 9, 2022
da15066
:bug: Replace `np.float` with `float`
brackham Mar 2, 2023
6d00c69
Merge pull request #9 from brackham/patch-float
atsiaras Mar 10, 2023
d389d4f
Update README.md
atsiaras Mar 14, 2023
efef47f
Update __version__.txt
atsiaras Jun 12, 2023
c85ecd9
Update __version__.txt
atsiaras Jun 12, 2023
72bd857
v4.0.4 updates
atsiaras Nov 4, 2024
340a4e5
add tests and coverage
atsiaras Nov 4, 2024
8905a89
Create build-python-3.12.yml
atsiaras Nov 4, 2024
eeffc7c
Update __databases__.pickle
atsiaras Nov 4, 2024
eb43d24
Merge pull request #16 from ucl-exoplanets/dev
atsiaras Nov 4, 2024
5dda435
Update __databases__.pickle
atsiaras Nov 4, 2024
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
34 changes: 34 additions & 0 deletions .github/workflows/build-python-3.10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build Python 3.10

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pip install git+https://github.com/atsiaras/exoclock.git
pip install -e .
- name: Run tests
run: pytest --cov --cov-report=xml
38 changes: 38 additions & 0 deletions .github/workflows/build-python-3.11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build Python 3.11

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pip install git+https://github.com/atsiaras/exoclock.git
pip install -e .
- name: Run tests
run: pytest --cov --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
34 changes: 34 additions & 0 deletions .github/workflows/build-python-3.12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build Python 3.12

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pip install git+https://github.com/atsiaras/exoclock.git
pip install -e .
- name: Run tests
run: pytest --cov --cov-report=xml
34 changes: 34 additions & 0 deletions .github/workflows/build-python-3.8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build Python 3.8

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pip install git+https://github.com/atsiaras/exoclock.git
pip install -e .
- name: Run tests
run: pytest --cov --cov-report=xml
34 changes: 34 additions & 0 deletions .github/workflows/build-python-3.9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build Python 3.9

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pip install git+https://github.com/atsiaras/exoclock.git
pip install -e .
- name: Run tests
run: pytest --cov --cov-report=xml
39 changes: 0 additions & 39 deletions .github/workflows/python-package.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
tests/test_eclipse
tests/test_transit
tests/test_emcee
MANIFEST.in
pylightcurve/*_local_*
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

16 changes: 16 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
include pylightcurve/catalogues/*
include pylightcurve/analysis/*
include pylightcurve/images/*
include pylightcurve/processes/*
include pylightcurve/models/*
include pylightcurve/plots/*
include pylightcurve/spacetime/*
include pylightcurve/__description__.txt
include pylightcurve/__version__.txt
include pylightcurve/__url__.txt
include pylightcurve/__author__.txt
include pylightcurve/__databases__.pickle
include pylightcurve/__author_email__.txt
include README.md
include LICENSE
include requirements.txt
Loading
Loading