File tree Expand file tree Collapse file tree 4 files changed +63
-1
lines changed
Expand file tree Collapse file tree 4 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Python package
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+
7+ jobs :
8+ build :
9+
10+ runs-on : ubuntu-latest
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ python-version : ["3.8"]
15+
16+ steps :
17+ - uses : actions/checkout@v3
18+ - name : Set up Python ${{ matrix.python-version }}
19+ uses : actions/setup-python@v3
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install --upgrade pip
25+ python -m pip install flake8 pytest
26+ python -m pip install numpy scipy
27+ - name : Install wonambi
28+ run : |
29+ python -m pip install -e .
Original file line number Diff line number Diff line change 1+ name : Upload Python Package
2+
3+ on :
4+ push :
5+ tags :
6+ - ' *'
7+
8+ permissions :
9+ contents : read
10+
11+ jobs :
12+ deploy :
13+
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v3
18+ - name : Set up Python
19+ uses : actions/setup-python@v3
20+ with :
21+ python-version : ' 3.x'
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install --upgrade pip
25+ pip install build
26+ - name : Build package
27+ run : python -m build
28+ - name : Publish package
29+ uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
30+ with :
31+ user : __token__
32+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Change Log
22==========
33Version 7
44----------
5+ - **7.13 **: release to pypi
56- **7.12 **: tukey from scipy.signal.windows and nan instead of NaN for numpy
67- **7.11 **: quick fix for Phillips staging import
78- **7.10 **: re-re-release
Original file line number Diff line number Diff line change 1- 7.12
1+ 7.13
You can’t perform that action at this time.
0 commit comments