Skip to content

Commit 9b2bf20

Browse files
committed
this should finally work for GH releases to pypi
1 parent 68eb1c1 commit 9b2bf20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pip install setuptools wheel twine
4040
- name: build
4141
run: |
42-
pip wheel -w wheelhouse/ ir_datasets
42+
python setup.py bdist_wheel
4343
- name: upload
4444
env:
4545
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

ir_datasets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ def main_cli():
4343
import sys
4444
main(sys.argv[1:])
4545

46-
__version__ = "0.1.5" # NOTE: keep this in sync with setup.py
46+
__version__ = "0.1.6" # NOTE: keep this in sync with setup.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="ir_datasets",
9-
version="0.1.5", # NOTE: keep this in sync with ir_datasets/__init__.py
9+
version="0.1.6", # NOTE: keep this in sync with ir_datasets/__init__.py
1010
author="Sean MacAvaney",
1111
author_email="[email protected]",
1212
description="provides a common interface to many IR ad-hoc ranking benchmarks, training datasets, etc.",

0 commit comments

Comments
 (0)