Skip to content

Commit c4dfc8e

Browse files
committed
Merge branch 'release/restart'
2 parents fc1984b + 8e21d27 commit c4dfc8e

File tree

4 files changed

+87
-1
lines changed

4 files changed

+87
-1
lines changed

.github/images/mod.svg

+66
Loading

.github/workflows/publish-to-test-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on: push
99
jobs:
1010
build-n-publish:
1111
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@master
1515
- name: Set up Python 3.8

modulation/jax_utilities/__init__.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
4+
__author__ = "heider"
5+
__doc__ = r"""
6+
7+
Created on 8/17/22
8+
"""
9+
10+
__all__ = []

modulation/jax_utilities/fourier.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
4+
__author__ = "heider"
5+
__doc__ = r"""
6+
7+
Created on 8/17/22
8+
"""
9+
10+
__all__ = []

0 commit comments

Comments
 (0)