Skip to content

Commit de691af

Browse files
committed
Minor fix path on windows
1 parent 63ed541 commit de691af

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

changes.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
.. currentmodule:: bitproto
22

3+
.. _version-0.4.3:
4+
5+
Version 0.4.3
6+
-------------
7+
8+
- Minor fix compiler setup.py path for windows
9+
310
.. _version-0.4.2:
411

512
Version 0.4.2

compiler/bitproto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
99
"""
1010

11-
__version__ = "0.4.2"
11+
__version__ = "0.4.3"
1212
__description__ = "bit level data interchange format."

compiler/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description=description,
1818
packages=["bitproto"],
1919
include_package_data=True,
20-
long_description=open("../README.rst").read(),
20+
long_description=open(join("..", "README.rst")).read(),
2121
zip_safe=False,
2222
entry_points={"console_scripts": ["bitproto=bitproto._main:run_bitproto"]},
2323
python_requires=">=3.7",

0 commit comments

Comments
 (0)