Skip to content

Commit d703923

Browse files
committed
make dependent on latest nanoget
1 parent 5e7494a commit d703923

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
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",

0 commit comments

Comments
 (0)