Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Py312 dev #31

Merged
merged 6 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python:
version: 3.8
version: 3.12
install:
- method: pip
path: .
Expand Down
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
- python: 3.10
- python: 3.11
- python: 3.12

# will still build pull requests
branches:
Expand Down Expand Up @@ -46,8 +51,8 @@ install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Install the library with test requirements
- conda install -c conda-forge openbabel rdkit tensorflow numpy scipy pandas scikit-learn matplotlib seaborn future six
- pip install pytest
- conda install -c conda-forge openbabel tensorflow numpy scipy pandas scikit-learn matplotlib seaborn future six
- pip install pytest rdkit shap lime
- pip install -e .[tests]
- pip install codecov

Expand Down
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,32 @@ The format of library is similar to the well known libraries like Scikit-learn.
- to find out about the latest version and release history, click [here](https://pypi.org/project/chemml/#history)

## Installation and Dependencies:
You can download ChemML from PyPI via pip.
We strongly recommend you to install ChemML in an Anaconda environment. The instructions to create the environment, install ChemML’s dependencies, and subsequently install ChemML using the Python Package Index (PyPI) via pip are as follows:

pip install chemml --user -U
conda create --name chemml_env python=3.12
source activate chemml_env
conda install -c conda-forge openbabel nb_conda_kernels python-graphviz
pip install chemml

Here is a list of external libraries that will be installed with chemml:
- numpy
- pandas
- tensorflow
- rdkit
- scikit-learn
- matplotlib
- seaborn
- lxml
- openpyxl
- ipywidgets
- shap
- lime

We strongly recommend you to install ChemML in an Anaconda environment. The instructions to create the environment, install ChemML’s dependencies, and subsequently install Chemml using the Python Package Index (PyPI) via pip are as follows:
We also require the user to install PyTorch depending on their operating system and GPU configuration, which can be done by following the wizard on this page:

conda create --name chemml_env python=3.8
source activate chemml_env
conda install -c conda-forge openbabel rdkit nb_conda_kernels python-graphviz
pip install chemml
https://pytorch.org/get-started/locally/

Note: The PyTorch CUDA 12.4 install has been tested with CUDA 12.5 and works fine, but future CUDA versions may not be compatible. If any issues arise from CUDA compatibility, it is recommended to follow the instructions on the PyTorch website to compile from source.

## Citation:
Please cite the use of ChemML as:
Expand Down Expand Up @@ -112,6 +117,7 @@ ChemML is distributed under 3-Clause BSD License (https://opensource.org/license
- Mojtaba Haghighatlari
- Aditya Sonpal, [email protected]
- Aatish Pradhan, [email protected]
- Nitin Murthy, [email protected]
University at Buffalo - The State University of New York (UB)

### Contributors:
Expand Down
4 changes: 2 additions & 2 deletions chemml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# __name__ = "chemml"
__version__ = "1.2"
__author__ = ["Aditya Sonpal ([email protected])", "Gaurav Vishwakarma ([email protected]) ", "Aatish Pradhan ([email protected])","Mojtaba Haghighatlari ([email protected])", "Johannes Hachmann ([email protected])"]
__version__ = "1.3.1"
__author__ = ["Aditya Sonpal ([email protected])", "Gaurav Vishwakarma ([email protected]) ", "Aatish Pradhan ([email protected])", "Nitin Murthy ([email protected])","Mojtaba Haghighatlari ([email protected])", "Johannes Hachmann ([email protected])"]


# import sys
Expand Down
Loading