Skip to content

Commit 0be475b

Browse files
committed
bump pmcx version to 0.1.1 to fix critical bug #180
1 parent eaf31de commit 0be475b

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

pmcx/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Copyright: (C) Matin Raayai Ardakani (2022-2023) <raayaiardakani.m at northeastern.edu>, Qianqian Fang (2019-2023) <q.fang at neu.edu>, Fan-Yu Yen (2023) <yen.f at northeastern.edu>
66
- License: GNU Public License V3 or later
7-
- Version: 0.1.0
7+
- Version: 0.1.1
88
- URL: https://pypi.org/project/pmcx/
99
- Github: https://github.com/fangq/mcx
1010

@@ -99,8 +99,13 @@ This can be queried via ```echo $env:PATH``` on Windows or ```echo $PATH``` on L
9999
cd mcx/pmcx
100100
```
101101

102-
3. Either run ```python setup.py install``` or ```pip install .``` to directly install, or run ```pip wheel .``` to only
103-
build the Python wheel without installing it.
102+
3. One can run `python3 setup.py install` or `python3 -m pip install .` to both locally build and install the module
103+
104+
4. If one only wants to locally build the module, one should run `python3 -m pip wheel .`
105+
106+
5. If the binary module is successfully built locally, you should see a binary wheel file `pmcx-X.X.X-cpXX-cpXX-*.whl`
107+
stored inside the `mcx/pmcx` folder. You can install this wheel package using `python3 -m pip install --force-reinstall pmcx-*.whl`
108+
to force installing this locally compiled `pmcx` module and overwrite any previously installed versions.
104109

105110

106111
## How to use

pmcx/pmcx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# from .files import loadmc2, loadmch, load, save
5050
from .bench import bench
5151

52-
__version__ = "0.1.0"
52+
__version__ = "0.1.1"
5353

5454
__all__ = (
5555
"gpuinfo",

pmcx/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def build_extension(self, ext):
119119
setup(
120120
name="pmcx",
121121
packages=['pmcx'],
122-
version="0.1.0",
122+
version="0.1.1",
123123
requires=['numpy'],
124124
license='GPLv3+',
125125
author="Matin Raayai Ardakani, Qianqian Fang, Fan-Yu Yen",

0 commit comments

Comments
 (0)