Skip to content

Commit 1d7eac7

Browse files
committed
fix README
1 parent 7e85e29 commit 1d7eac7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/wheels-any.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
python-version: '3.12'
2323

2424
- name: build wheel
25-
run: python -m pip wheel .
25+
run: python -m pip wheel . -v
2626

2727
- name: install twine
2828
run: python -m pip install twine
2929

3030
- name: check wheel
31-
run: python -m twine check dist
31+
run: python -m twine check ./onnx_diagnostic*.whl
3232

3333
- uses: actions/upload-artifact@v4
3434
with:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ onnx-diagnostic: investigate onnx models
2626
:target: https://codecov.io/gh/sdpython/onnx-diagnostic
2727

2828
Helps investigating onnx models, exporting modes into onnx.
29-
See :epkg:`documentation of onnx-diagnostic <https://sdpython.github.io/doc/onnx-diagnostic/dev/>`_.
29+
See `documentation of onnx-diagnostic <https://sdpython.github.io/doc/onnx-diagnostic/dev/>`_.
3030

3131
Getting started
3232
+++++++++++++++

onnx_diagnostic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Functions, classes to dig into a model when this one is right, slow, wrong...
44
"""
55

6-
__version__ = "0.2.0"
6+
__version__ = "0.2.1"
77
__author__ = "Xavier Dupré"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
version=version_str,
4141
description="Investigate ONNX models",
4242
long_description=long_description,
43+
long_description_content_type="text/x-rst",
4344
author="Xavier Dupré",
4445
author_email="[email protected]",
4546
url="https://github.com/sdpython/onnx-diagnostic",

0 commit comments

Comments
 (0)