Skip to content

Commit c5c4052

Browse files
authored
Merge pull request #167 from tberkel/misc-cleanup
Cleanup roadmap and proposals
2 parents 877415e + 06c0065 commit c5c4052

File tree

8 files changed

+42
-33
lines changed

8 files changed

+42
-33
lines changed

source/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
"globaltoc_collapse": True,
143143
"master_doc": False,
144144
"heroes": {"index": "The Python-based Simulations of Chemistry Framework"},
145+
"show_prev_next": False,
145146
"nav_links": [
146147
{"href": "index", "title": "Home", "internal": True},
147148
#{"href": "overview", "title": "Overview", "internal": True},
@@ -188,6 +189,7 @@
188189
"secondary_sidebar_items": {
189190
"**": ["page-toc", "edit-this-page"],
190191
},
192+
"show_prev_next": False,
191193
# "navbar_align": "left",
192194
}
193195

source/contributor/api-v3.rst

Lines changed: 0 additions & 30 deletions
This file was deleted.

source/contributor/index.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Contributor Guide
22

3-
A more complete Contributor Guide and planned tasks for PySCF for the future.
3+
A more complete Contributor Guide is planned for the future. In the meantime,
4+
if you are interested in contributing to PySCF, please open an
5+
[Issue](https://github.com/pyscf/pyscf/issues) on GitHub (including bug
6+
reports, feature requests, and unexpected behaviors) or start a
7+
[Discussion](https://github.com/pyscf/pyscf/discussions).
48

59
```{toctree}
610
:caption: Style guide
@@ -10,10 +14,11 @@ code-standard
1014
```
1115

1216
```{toctree}
13-
:caption: API change proposals
17+
:caption: Roadmap
1418
:maxdepth: 1
1519
16-
api-v3.rst
20+
roadmap
21+
proposals
1722
```
1823

1924
```{toctree}

source/contributor/proposals.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Proposals
2+
3+
```{toctree}
4+
:maxdepth: 1
5+
6+
proposals/tagged-nparray
7+
proposals/np-interface
8+
proposals/cpp-extensions
9+
```
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Allowing extensions written in C++
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Introducing a universal NumPy interface for various NumPy-compatible libraries
2+
3+
A general NumPy wrapper can be developed in PySCF to provide a universal interface
4+
to access NumPy functions. This interface would enable automatic switching to
5+
`jax.numpy` or `torch` functions depending on the runtime context.
6+
7+
This interface can be imported as
8+
9+
```python
10+
import pyscf.numpy as fnp
11+
```
12+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Removing TaggedNPArray
2+
3+
## Passing additional keyword arguments
4+
5+
## Returning multiple values instead of the TaggedNPArray
6+
7+
## Global configuration to control the return style

source/contributor/roadmap.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Current roadmap
2+
3+
This page provides a high-level roadmap for the current status and future development of PySCF.

0 commit comments

Comments
 (0)