Skip to content

Commit 33c96b6

Browse files
authored
Merge pull request #6 from bzhanglab/feat-use-updated-packaging
Fix bad links and update packaging
2 parents be82e8e + 0819ac8 commit 33c96b6

14 files changed

Lines changed: 3782 additions & 991 deletions

File tree

.github/workflows/release.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish
2+
on:
3+
push:
4+
tags:
5+
- "v*"
6+
7+
permissions:
8+
contents: read
9+
id-token: write
10+
packages: write
11+
12+
jobs:
13+
release:
14+
name: python
15+
runs-on: ubuntu-latest
16+
environment:
17+
name: release
18+
permissions:
19+
id-token: write
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Install uv
23+
uses: astral-sh/setup-uv@v5
24+
- name: Setup Python Version
25+
run: uv python pin 3.10
26+
- name: Install the project
27+
run: uv sync --all-groups
28+
- name: Build wheel
29+
run: uv build
30+
- name: Publish to PyPI
31+
run: uv publish --trusted-publishing always

funmap/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Top-level package for FunMap."""
22

33
__author__ = """Zhiao Shi"""
4-
__email__ = 'zhiao.shi@gmail.com'
5-
__version__ = '0.2.1'
4+
__email__ = "zhiao.shi@gmail.com"
5+
__version__ = "0.2.2"

0 commit comments

Comments
 (0)