File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish to PyPI
2+
3+ on :
4+ release :
5+ types : [published]
6+ workflow_dispatch : # Allows manual triggering
7+
8+ jobs :
9+ build-and-publish :
10+ runs-on : ubuntu-latest
11+ permissions :
12+ id-token : write # Required for trusted publishing
13+ contents : read
14+
15+ steps :
16+ - uses : actions/checkout@v6
17+
18+ - name : Set up Python
19+ uses : actions/setup-python@v6
20+ with :
21+ python-version : ' 3.x'
22+
23+ - name : Install build dependencies
24+ run : |
25+ python -m pip install --upgrade pip
26+ pip install build
27+
28+ - name : Build package
29+ run : python -m build
30+
31+ - name : Publish to PyPI
32+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 3838 "numpy>=1.16.5" ,
3939 "scipy" ,
4040 "python-dateutil" ,
41- "nanoget>=1.19.1 " ,
41+ "nanoget>=1.19.4 " ,
4242 "plotly>=6.1.1" ,
4343 "pyarrow" ,
4444 "kaleido>=1.0.0" ,
You can’t perform that action at this time.
0 commit comments