Skip to content

Commit

Permalink
Merge pull request #219 from kutaslab/dev
Browse files Browse the repository at this point in the history
for release 0.5.3
  • Loading branch information
turbach authored Feb 15, 2022
2 parents 0197e7a + cb3c42f commit 86911b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/fitgrid-cid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ on:
types: [published]

schedule:
# min hour day month year. digit = when, / = step by, * = all
- cron: '0 0 */1 * *'
# min, hour, day, month, day of week. digit = when, / = step by, * = all
# midnight Sunday
- cron: '0 0 * * 0'

env:
PACKAGE_NAME: fitgrid
Expand All @@ -78,7 +79,7 @@ jobs:
runs-on: ${{ matrix.os }} # ubuntu-latest
strategy:
matrix:
py_ver: [3.7, 3.8]
py_ver: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-10.15] # Intel macs

env:
Expand Down
6 changes: 3 additions & 3 deletions docs/source/gallery/1_epochs_data/noaa_csv_to_epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,14 +263,14 @@
alpha=0.1,
)
if day == 5:
ax.annotate(
xy=(ht.date_time_gmt + pd.Timedelta(hours=1), 2.0),
s=(
text=ax.annotate(
(
"Highlight indicates epoch bounds. Overlapping epochs\n"
"are legal but the observations are duplicated. This\n"
"will increase the epochs data size and may violate\n"
"modeling assumptions. This is not checked."
),
xy=(ht.date_time_gmt + pd.Timedelta(hours=1), 2.0),
size=12,
)

Expand Down
2 changes: 1 addition & 1 deletion fitgrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .models import run_model, lm, lmer
from . import utils, defaults

__version__ = "0.5.2"
__version__ = "0.5.3"

# for use by pytests and docs
DATA_DIR = Path(__file__).parent / "data"

0 comments on commit 86911b6

Please sign in to comment.