Skip to content

Commit

Permalink
Merge pull request #669 from chemprop/fix-v1-docs-theme
Browse files Browse the repository at this point in the history
Fix v1 docs theme
  • Loading branch information
kevingreenman committed Feb 26, 2024
2 parents 58f0eb6 + d4a6332 commit 7214a7b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 The Chemprop Development Team (Regina Barzilay, Jackson Burns,
Copyright (c) 2024 The Chemprop Development Team (Regina Barzilay, Jackson Burns,
Yunsie Chung, David Graff, William Green, Kevin Greenman, Yanfei Guan,
Esther Heid, Lior Hirschfeld, Tommi Jaakkola, Wengong Jin, Shih-Cheng Li,
Mengjie Liu, Charles McGill, Kyle Swanson, Allison Tam, Florence Vermeire,
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/chemprop)](https://badge.fury.io/py/chemprop)
[![PyPI version](https://badge.fury.io/py/chemprop.svg)](https://badge.fury.io/py/chemprop)
[![Build Status](https://github.com/chemprop/chemprop/workflows/tests/badge.svg)](https://github.com/chemprop/chemprop)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/chemprop/badges/version.svg)](https://anaconda.org/conda-forge/chemprop)
[![Build Status](https://github.com/chemprop/chemprop/workflows/tests/badge.svg)](https://github.com/chemprop/chemprop/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/chemprop/badge/?version=latest)](https://chemprop.readthedocs.io/en/latest/?badge=latest)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Downloads](https://static.pepy.tech/badge/chemprop)](https://pepy.tech/project/chemprop)
[![Downloads](https://static.pepy.tech/badge/chemprop/month)](https://pepy.tech/project/chemprop)
[![Downloads](https://static.pepy.tech/badge/chemprop/week)](https://pepy.tech/project/chemprop)

Chemprop is a repository containing message passing neural networks for molecular property prediction.

**License:** Chemprop is free to use under the [MIT License](LICENSE.txt). The Chemprop logo is free to use under [CCO 1.0](logo/LICENSE.txt).
**License:** Chemprop is free to use under the [MIT License](LICENSE.txt). The Chemprop logo is free to use under [CC0 1.0](logo/LICENSE.txt).

**References**: Please cite the appropriate papers if Chemprop is helpful to your research.

Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# -- Project information -----------------------------------------------------

project = 'chemprop'
copyright = '2020, Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam'
author = 'Kyle Swanson, Kevin Yang, Wengong Jin, Lior Hirschfeld, Allison Tam'
copyright = '2024, The Chemprop Development Team'
author = 'The Chemprop Development Team'

# The full version, including alpha/beta/rc tags
release = '1.6.1'
Expand Down Expand Up @@ -49,7 +49,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'default'
html_theme = 'sphinx_rtd_theme'

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Chemprop
========

Note: this site is several versions behind. An up-to-date version of our Read the Docs is forthcoming with the release of Chemprop v2.0 in early 2024. The `README <https://github.com/chemprop/chemprop/blob/master/README.md>`_ and `args.py <https://github.com/chemprop/chemprop/blob/master/chemprop/args.py>`_ files are currently the best sources for documentation on more recently-added features.
.. warning:: This documentation site is several versions behind the codebase. An up-to-date version of our Read the Docs is forthcoming with the release of Chemprop v2.0 in early 2024. The `README <https://github.com/chemprop/chemprop/blob/master/README.md>`_ and `args.py <https://github.com/chemprop/chemprop/blob/master/chemprop/args.py>`_ files are currently the best sources for documentation on more recently-added features.

`Chemprop <https://github.com/chemprop/chemprop>`_ is a message passing neural network for molecular property prediction.

Expand Down
5 changes: 3 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies:
- tensorboardX>=2.0
- torchvision>=0.5.0
- tqdm>=4.45.0
- sphinx-rtd-theme>=2.0.0
- pip:
- typed-argument-parser>=1.6.1
- git+https://github.com/bp-kelley/descriptastorus
- typed-argument-parser>=1.6.1
- git+https://github.com/bp-kelley/descriptastorus
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ install_requires =
scikit-learn>=0.22.2.post1
scipy>=1.4.1
sphinx>=3.1.2
sphinx-rtd-theme>=2.0.0
tensorboardX>=2.0
torch>=1.4.0
tqdm>=4.45.0
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"pandas-flavor>=0.2.0",
"scikit-learn>=0.22.2.post1",
"sphinx>=3.1.2",
"sphinx-rtd-theme>=2.0.0",
"tensorboardX>=2.0",
"torch>=1.4.0",
"tqdm>=4.45.0",
Expand Down

0 comments on commit 7214a7b

Please sign in to comment.