Skip to content

Commit 239dd0a

Browse files
authored
test release wheel
1 parent 8c5490d commit 239dd0a

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/release.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build and Release Python Wheel
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-release:
10+
if: contains(github.event.head_commit.message, 'release')
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Build the wheel
18+
run: python -m wheel .
19+
20+
- name: Upload the wheel as an artifact
21+
uses: actions/upload-artifact@v4
22+
with:
23+
name: python-wheel
24+
path: dist/*.whl

affinity.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Module for creating well-documented datasets, with types and annotations.
33
"""
44

5+
__version__ = "0.2.0"
6+
57
import numpy as np
68
import pandas as pd
79
from importlib import import_module

0 commit comments

Comments
 (0)