File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed
Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to PyPI
2+
3+ on :
4+ release :
5+ types : [published]
6+
7+ jobs :
8+ publish :
9+ name : Build and publish to PyPI
10+ runs-on : ubuntu-latest
11+ permissions :
12+ contents : read
13+ steps :
14+ - name : Check out repository
15+ uses : actions/checkout@v4
16+ with :
17+ fetch-depth : 0
18+
19+ - name : Set up Python
20+ uses : actions/setup-python@v4
21+ with :
22+ python-version : " 3.11"
23+
24+ - name : Install Poetry
25+ uses : snok/install-poetry@v1
26+ with :
27+ virtualenvs-create : true
28+ virtualenvs-in-project : true
29+
30+ - name : Install dependencies
31+ run : poetry install --no-interaction --no-root
32+
33+ - name : Build package
34+ run : poetry build
35+
36+ - name : Publish to PyPI
37+ uses : pypa/gh-action-pypi-publish@release/v1
38+ with :
39+ user : __token__
40+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " pandasaurus"
3- version = " 0.3.9 "
3+ version = " 0.4.0 "
44description = " Supporting simple queries over ontology annotations in dataframes, using UberGraph queries."
55authors = [
" Ismail Ugur Bayindir <[email protected] >" ]
66license = " http://www.apache.org/licenses/LICENSE-2.0"
You can’t perform that action at this time.
0 commit comments