Skip to content

Commit db1e86b

Browse files
Merge pull request #6 from tessgi/daniel-sketch1
Refactor into lkdata package focused on the data objects
2 parents 4c222c5 + 4315383 commit db1e86b

79 files changed

Lines changed: 3432 additions & 1727 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55

66
[bumpversion:file:pyproject.toml]
77

88
[bumpversion:file:docs/conf.py]
99

10-
[bumpversion:file:src/lightkurve/version.py]
10+
[bumpversion:file:src/lkdata/version.py]

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
22+
python-version: '3.9'
2323

2424
- name: Cache Poetry dependencies
2525
uses: actions/cache@v3

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.9]
14+
python-version: ['3.9']
1515
permissions:
1616
# Gives the action the necessary permissions for publishing new
1717
# comments in pull requests.

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
22+
python-version: '3.9'
2323

2424
- name: Cache Poetry dependencies
2525
uses: actions/cache@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
22+
python-version: '3.10'
2323

2424
- name: Cache Poetry dependencies
2525
uses: actions/cache@v3

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
# Run the formatter.
1717
- id: ruff-format
1818
types_or: [ python, pyi, jupyter ]
19-
- repo: https://github.com/pre-commit/mirrors-mypy
20-
rev: v0.910 # Use the appropriate revision
21-
hooks:
22-
- id: mypy
19+
# - repo: https://github.com/pre-commit/mirrors-mypy
20+
# rev: v0.910 # Use the appropriate revision
21+
# hooks:
22+
# - id: mypy

.ruff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ ignore = [
4444
"Q000", # Allow single quotes
4545
]
4646

47-
# Assume Python 3.9
48-
target-version = "py39"
47+
# Assume Python 3.10
48+
target-version = "py310"
4949

5050
[lint]
5151
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Lightkurve
1+
# lkdata
22

33
[![Installation](https://github.com/tessgi/secret/actions/workflows/install.yml/badge.svg?event=push)](https://github.com/tessgi/secret/actions/workflows/install.yml)
44
[![ruff](https://github.com/tessgi/secret/actions/workflows/check.yml/badge.svg?event=push)](https://github.com/tessgi/secret/actions/workflows/check.yml)

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Documentation Guide for `Lightkurve`
1+
# Documentation Guide for `Lightkurve`'s `lkdata`
22

3-
Welcome to the documentation guide for `Lightkurve`. This README will provide you with the guidelines and tools necessary to contribute to the project's documentation.
3+
Welcome to the documentation guide for `Lightkurve`'s `lkdata`. This README will provide you with the guidelines and tools necessary to contribute to the project's documentation.
44

55
## Writing Style
66

docs/conf.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
sys.path.insert(0, os.path.abspath("../../src"))
1818

1919

20-
project = "lightkurve"
20+
project = "lkdata"
2121
copyright = "2024, TESS Science Support Center"
2222
author = "TESS Science Support Center"
2323

@@ -81,13 +81,10 @@
8181
intersphinx_mapping = {
8282
"python": ("https://docs.python.org/3/", None),
8383
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
84-
"scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
85-
"matplotlib": ("https://matplotlib.org", None),
8684
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
87-
"astropy": ("https://docs.astropy.org/en/latest/", None),
8885
}
8986

9087

9188
# rst_epilog = """
92-
# .. |version| replace:: 0.2.0
89+
# .. |version| replace:: 0.1.0
9390
# """

0 commit comments

Comments
 (0)