Skip to content

Commit a3412dd

Browse files
authored
Merge pull request #20 from LRydin/dev
2025 around the corner. Updated CI.
2 parents 7e9c370 + 674aefd commit a3412dd

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/CI.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [ubuntu-latest, macos-latest]
12-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
11+
os: [macos-13, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-latest]
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies
@@ -27,4 +27,4 @@ jobs:
2727
coverage run -m pytest test/
2828
2929
- name: Upload code coverage
30-
uses: codecov/codecov-action@v1
30+
uses: codecov/codecov-action@v5

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019–2023 Leonardo Rydin Gorjão
3+
Copyright (c) 2019–2024 Leonardo Rydin Gorjão
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The study of stochastic processes from a data-driven approach is grounded in ext
194194
You can find and extensive review on the subject [here](http://sharif.edu/~rahimitabar/pdfs/80.pdf)<sup>1</sup>
195195

196196
### History
197-
This project was started in 2017 at the [neurophysik](https://www.researchgate.net/lab/Klaus-Lehnertz-Lab-2) by Leonardo Rydin Gorjão, Jan Heysel, Klaus Lehnertz, and M. Reza Rahimi Tabar. Francisco Meirinhos later devised the hard coding to python. The project is now supported by Dirk Witthaut and the [Institute of Energy and Climate Research Systems Analysis and Technology Evaluation](https://www.fz-juelich.de/iek/iek-ste/EN/Home/home_node.html).
197+
This project was started in 2017 at the [neurophysik](https://www.researchgate.net/lab/Klaus-Lehnertz-Lab-2) by Leonardo Rydin Gorjão, Jan Heysel, Klaus Lehnertz, and M. Reza Rahimi Tabar. Francisco Meirinhos later devised the hard coding to python. The project has had many supporters, such as Dirk Witthaut at the [Institute of Climate and Energy Systems (ICE)- Energiesystemtechnik (ICE-1), FZJ](https://www.fz-juelich.de/profile/witthaut_d), Benjamin Schäfer [Institute for Automation and Applied Informatics, KIT](https://www.iai.kit.edu/english/2154_4101.php), and Niklas Boers at [Technical University of Munich](https://www.professoren.tum.de/en/boers-niklas) & [Potsdam Institute for Climate Impact Research](https://www.pik-potsdam.de/members/boers), along with many others.
198198

199199
### Funding
200200
Helmholtz Association Initiative _Energy System 2050 - A Contribution of the Research Field Energy_ and the grant No. VH-NG-1025 and *STORM - Stochastics for Time-Space Risk Models* project of the Research Council of Norway (RCN) No. 274410.

docs/source/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
# -- Project information -----------------------------------------------------
2424

2525
project = 'KramersMoyal'
26-
copyright = '2019-2020, Leonardo Rydin and Francisco Meirinhos'
27-
author = 'Leonardo Rydin and Francisco Meirinhos'
26+
copyright = '2019-2025, Leonardo Rydin Gorjão and Francisco Meirinhos'
27+
author = 'Leonardo Rydin Gorjão and Francisco Meirinhos'
2828

2929
# The full version, including alpha/beta/rc tags
30-
release = '0.4'
31-
version = '0.4'
30+
release = '0.4.1'
31+
version = '0.4.1'
3232

3333

3434
# -- General configuration ---------------------------------------------------

docs/source/license.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ License
33

44
MIT License
55

6-
Copyright (c) 2019–2023 Leonardo Rydin Gorjão
6+
Copyright (c) 2019–2025 Leonardo Rydin Gorjão
77

88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal

kramersmoyal/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__name__ = 'kramersmoyal'
55
__version__ = '0.4.1'
66
__author__ = 'Leonardo Rydin Gorjão and Francisco Meirinhos'
7-
__copyright__ = 'Copyright 2019–2023 Leonardo Rydin Gorjão, MIT License'
7+
__copyright__ = 'Copyright 2019–2024 Leonardo Rydin Gorjão, MIT License'

kramersmoyal/kmc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def km(timeseries: np.ndarray, bins: str='default', powers: int=4,
109109
----------
110110
.. [Lamouroux2009] D. Lamouroux and K. Lehnertz, "Kernel-based regression of
111111
drift and diffusion coefficients of stochastic processes." Physics Letters A
112-
373(39), 3507─3512, 2009.
112+
373(39), 3507─3512, 2009. DOI: 10.1016/j.physleta.2009.07.073
113113
"""
114114

115115
# Check finiteness, dimensions, and existence of the time series

0 commit comments

Comments
 (0)