Skip to content

Commit

Permalink
setup bugs
Browse files Browse the repository at this point in the history
check for boost library version doesn't work like it did previously
updated version
  • Loading branch information
eltrompetero committed Jan 8, 2021
1 parent 974de83 commit da47c10
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ $ conda install -c conda-forge boost==1.74
$ pip install coniii
```
If you have trouble using `pip`, then you can always build this package from
source. Download the latest release from GitHub. Make sure that you are running Python
3.8.3 or higher and have boost v1.74.0 installed. Inside the top directory "coniii", you
must run
source. The following code will down download the latest release from GitHub and install
the package. Make sure that you are running Python 3.8.3 or higher and have boost v1.74.0
installed.
```bash
$ git clone https://github.com/eltrompetero/coniii.git
$ cd coniii
$ ./pypi_compile.sh
$ pip install dist/*.whl
```
Expand Down
6 changes: 5 additions & 1 deletion RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


v2.4.0 (TB Released 2021/01)
v2.4.1 (Released 2021/01)
----------------------------------------------------
- Fixed new bugs in installation scripts.

v2.4.0 (Released 2021/01)
----------------------------------------------------
- Update for Python 3.8.3 and Boost 1.74.0.
- New SparseEnumerate class for handling sparsely constrained system.
Expand Down
2 changes: 1 addition & 1 deletion coniii/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
version = '2.4.0'
version = '2.4.1'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@
'numpy>=1.16.2,<2',
'numba>=0.45.1,<1',
'mpmath>=1.1.0',
'dill',
'boost==1.74.0'],
'dill'],
'include_package_data':True, # see MANIFEST.in
'py_modules':['coniii.enumerate',
'coniii.enumerate_potts',
Expand Down

0 comments on commit da47c10

Please sign in to comment.