File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish package
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ release :
7
+ types : [published, released]
8
+
9
+ jobs :
10
+ deploy :
11
+ name : " Publish to PyPI"
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v3
15
+ - name : Set up Python
16
+ uses : actions/setup-python@v4
17
+ - name : Install dependencies
18
+ run : |
19
+ python -m pip install --upgrade pip
20
+ pip install build
21
+ - name : Build a binary wheel and a source tarball
22
+ run : |
23
+ python -m build --sdist
24
+ - name : Publish package to PyPI
25
+ if : github.event_name == 'release' && github.event.action == 'released'
26
+ uses : pypa/gh-action-pypi-publish@release/v1
27
+ with :
28
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ 1.1.1:
4
+ - Bug fixes (including security fixes)
5
+ - SR830 lockin amplifier driver
6
+ - Create CITATION.cff
7
+ - Experimental BOSA driver (by Zhimu)
8
+ - CI deployment via github
9
+
10
+ 1.1.0:
11
+ - Bug fixes in various instruments
12
+ - Included PRBS algorithms for the Anritsu PPG
13
+ - Improvements to MeasuredFunction
14
+ - Adding support for Keithley 2606B
15
+ - PRBS functionality in one_dim
16
+
17
+ 1.0.7:
18
+ - Bugfixes in PPG3202, DPO4032, and HP_8152A_PM
19
+ - Housekeeping in test environments
20
+ - Making DSA8300 work with Prologix driver
21
+
3
22
1.0.6:
4
23
- Major bug in Prologix driver
5
24
- Minor improvement to APEX driver
You can’t perform that action at this time.
0 commit comments