Skip to content

Commit

Permalink
Merge pull request #70 from mila-iqia/development
Browse files Browse the repository at this point in the history
Release 2.3
  • Loading branch information
mirkobronzi authored Aug 15, 2022
2 parents 354f2ad + f1e27a6 commit 00c2251
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 85 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ on:
push:
branches:
- master
- develop
- development
pull_request:
branches:
- master
- develop
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: python-3.8
- name: python-3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: install-dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"project_name": "Wonderful Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "{{ cookiecutter.project_name }} is wonderful!",
"python_version": "3.8",
"python_version": "3.9",
"environment": ["mila", "generic"],
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.0.1",
Expand Down
37 changes: 25 additions & 12 deletions {{cookiecutter.project_slug}}/APPROVED_LIBRARIES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
{%- if cookiecutter.environment == 'mila' %}
__TODO_START__
When starting a project, the other company needs to approve the libraries/tools that we use.
There are two options that the company can choose:
- Send a generic approval (via email) that all the libraries that we decide to use are pre-approved.
- Keep a list of the libraries, and when a new library is added, add it to the list and ask the company to approve.

If the former is selected, you can delete this file.
If the latter, this file represents the list.

The way it works is the following:
- First, make sure that all the licenses listed below are still valid (i.e., they did not change). You can use the link to speedup this process.
- Note that the last time the list was checked was on 2022-August-12.
- Then, ask the company to approve the list by writing "approved" (or similar), with their git account (this will prove that the company approval is authentic).
- When new libraries are added, create a new section below (`Dependencies as of ...`), where you copy the old list and you modify it according to your needs.
- Ask the company to approve with the method above (git commit).

Those instructions between TODO_START and TODO_END can be deleted.

__TODO_END__

Here is the list of dependencies required by Mila for the project development.
Note that the following dependencies will trigger some other dependencies and for sake of simplicity,
we are not listing them all. Modifications since last approved version are in **bold**.
Expand All @@ -15,6 +35,8 @@ we are not listing them all. Modifications since last approved version are in **
* ZSH: MIT-like [zsh](http://zsh.sourceforge.net/)
* OH-MY-ZSH: MIT [oh-my-zsh](https:/ohmyzsh/ohmyzsh/)
* TMUX - ISC [tmux](https:/tmux/tmux/)
* [ipdb](https://pypi.org/project/ipdb/) BSD License (BSD), - A very useful debugger.
* [ipython](https://pypi.org/project/ipython/) BSD, - A very useful interactive ipython shell

## Library dependencies
(see `setup.py`)
Expand All @@ -23,8 +45,8 @@ we are not listing them all. Modifications since last approved version are in **
* 'flake8-docstrings', MIT ([https://pypi.org/project/flake8-docstrings/](https://pypi.org/project/flake8-docstrings/))
* 'gitpython', BSD ([https://pypi.org/project/GitPython/](https://pypi.org/project/GitPython/))
* 'jupyter', BSD ([https:/jupyter/jupyter/blob/master/LICENSE](https:/jupyter/jupyter/blob/master/LICENSE))
* 'jupyter notebook', BSD ([https:/jupyter/notebook/blob/master/LICENSE](https:/jupyter/notebook/blob/master/LICENSE))
* 'jinja2', [3-clause BSD](https://jinja.palletsprojects.com/en/3.1.x/license/) ([https://palletsprojects.com/p/jinja/](https://palletsprojects.com/p/jinja/))
* 'myst-parser, MIT, ([https:/executablebooks/MyST-Parser](https:/executablebooks/MyST-Parser))
* 'orion', BSD [https:/Epistimio/orion/blob/develop/LICENSE](https:/Epistimio/orion/blob/develop/LICENSE)
* 'pyyaml', MIT ([https://pypi.org/project/PyYAML/](https://pypi.org/project/PyYAML/))
* 'pytest', MIT ([https://pypi.org/project/pytest/](https://pypi.org/project/pytest/))
Expand All @@ -36,20 +58,11 @@ we are not listing them all. Modifications since last approved version are in **
* 'sphinx-rtd-theme', MIT ([https://pypi.org/project/sphinx-rtd-theme/](https://pypi.org/project/sphinx-rtd-theme/))
* 'sphinxcontrib-napoleon', BSD ([https://pypi.org/project/sphinxcontrib-napoleon/](https://pypi.org/project/sphinxcontrib-napoleon/))
* 'sphinxcontrib-katex', BSD (MIT) ([https://pypi.org/project/sphinxcontrib-katex/](https://pypi.org/project/sphinxcontrib-katex/))
* 'recommonmark', MIT ([https://pypi.org/project/recommonmark/](https://pypi.org/project/recommonmark/))
* 'tensorboard', Apache License 2.0 ([https:/tensorflow/tensorboard](https:/tensorflow/tensorboard))
* 'tqdm', MIT ([https://pypi.org/project/tqdm/](https://pypi.org/project/tqdm/))
* 'tqdm', MIT+Mozilla Public license ([https://pypi.org/project/tqdm/](https://pypi.org/project/tqdm/))
* 'torch', BSD-3 ([https://pypi.org/project/torch/](https://pypi.org/project/torch/))

## External dependencies to the project

* [ipdb](https://pypi.org/project/ipdb/) BSD License (BSD), - A very useful debugger.
* [ipython](https://pypi.org/project/ipython/) BSD, - A very useful interactive ipython shell
* [jupytext](https://jupytext.readthedocs.io/en/latest/index.html) MIT, - this library allows us to easily convert and sync .ipynb and .py files simultaneously - very useful for notebooks without needing a browser.
* [pepermill](https://papermill.readthedocs.io/en/latest/) BSD, - very useful for running jupyter notebooks end-to-end directly from the CLI
* [jupyter-vim-binding](https:/lambdalisue/jupyter-vim-binding), MIT

## Pre-trained models

* ADD IF USED
{%- endif %}
{%- endif %}
4 changes: 3 additions & 1 deletion {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,10 @@ You can check orion status with the following commands:

### Building docs:

To automatically generate docs for your project, cd to the `docs` folder then run:
Documentation is built using sphinx. It will automatically document all functions based on docstrings.
To automatically generate docs for your project, navigate to the `docs` folder and build the documentation:

cd docs
make html

To view the docs locally, open `docs/_build/html/index.html` in your browser.
Expand Down
6 changes: 2 additions & 4 deletions {{cookiecutter.project_slug}}/docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from recommonmark.transform import AutoStructify
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
Expand Down Expand Up @@ -30,11 +29,11 @@
extensions = []

# enable use of markdown files
extensions.append('recommonmark')
extensions.append('myst_parser')

# use the readthedocs theme
extensions.append('sphinx_rtd_theme')
extensions.append('sphinxcontrib.napoleon')
extensions.append('sphinx.ext.napoleon')
extensions.append('sphinxcontrib.katex')

# autoapi extension for doc strings
Expand All @@ -57,7 +56,6 @@ def check_skip_member(app, what, name, obj, skip, options):
def setup(app):
"""Handler to connect to the autoapi app."""
app.connect("autoapi-skip-member", check_skip_member)
app.add_transform(AutoStructify)


# Add any paths that contain templates here, relative to this directory.
Expand Down
9 changes: 9 additions & 0 deletions {{cookiecutter.project_slug}}/docs/usage/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@ Quick Start
-----------

To get started, you have to first begin!

Everybody loves Schrodinger's equation, why not put it everywhere?

.. math::
i \hbar \frac{\partial}{\partial t}\Psi(\mathbf{r},t) = \hat H \Psi(\mathbf{r},t)
You can also add math or even link directly in your docstrings! For an example, click at the docstrings here:

:py:meth:`{{cookiecutter.project_slug}}.models.optim.load_loss`
60 changes: 2 additions & 58 deletions {{cookiecutter.project_slug}}/docs/usage/quickstart.md
Original file line number Diff line number Diff line change
@@ -1,62 +1,6 @@
### How to start the project
# Getting started
## Quickstart

Put your project instructions here, like

`pip install -e .`


### Add some math to your docs!

Everybody loves Schrodinger's equation, why not put it everywhere?
```eval_rst
:math:`i \hbar \frac{\partial}{\partial t}\Psi(\mathbf{r},t) = \hat H \Psi(\mathbf{r},t)`
```

You can also add math directly in your docstrings! For an example, click at the docstrings here:
```eval_rst
:py:meth:`{{cookiecutter.project_slug}}.models.optim.load_loss`
```

You can even reference them directly anywhere for convenience, because clicking is for the lazy:
```eval_rst
.. autoclass:: {{cookiecutter.project_slug}}.models.optim.load_loss
:show-inheritance:
:noindex:
```

### More documentation magic

A lot more information about what you can do with these docs is available [here](https://recommonmark.readthedocs.io/en/stable/auto_structify.html)

For example:

``` important:: We can have notes in markdown!
```

More craziness, wow, maybe rst is worth learning!


``` sidebar:: Line numbers and highlights
emphasis-lines:
highlights the lines.
linenos:
shows the line numbers as well.
caption:
shown at the top of the code block.
name:
may be referenced with `:ref:` later.
```

``` code-block::
:linenos:
:emphasize-lines: 3,5
:caption: An example code-block with everything turned on.
:name: Full code-block example
# Comment line
import System
System.run_emphasis_line
# Long lines in code blocks create a auto horizontal scrollbar
System.exit!
```
10 changes: 5 additions & 5 deletions {{cookiecutter.project_slug}}/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
'gitpython==3.1.27',
'jupyter==1.0.0',
'jinja2<3.1.0',
'myst-parser==0.18.0',
'orion>=0.2.4.post1',
'pyyaml==6.0',
'pytest==7.1.2',
'pytest-cov==3.0.0',
'pytorch_lightning==1.6.5',
'sphinx==3.5.4',
'sphinx-autoapi==1.8.1',
'sphinx-rtd-theme==0.5.2',
'sphinx==5.1.1',
'sphinx-autoapi==1.9.0',
'sphinx-rtd-theme==1.0.0',
'sphinxcontrib-napoleon==0.7',
'sphinxcontrib-katex==0.7.2',
'recommonmark==0.7.1',
'sphinxcontrib-katex==0.8.6',
'tensorboard==2.9.1',
'tqdm==4.64.0',
'torch==1.12.0',
Expand Down

0 comments on commit 00c2251

Please sign in to comment.