Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ Thumbs.db

# Things specific to this project #
###################################
site/_build/*
site/notebooks/*

# Content generated during notebook execution
content/mooreslaw_regression*
content/tutorial-x-ray-image-processing/xray_image.gif
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ See the linked documentation for further details.
### Quickstart

Set up a development environment with the dependencies listed in
`requirements.txt` and `site/requirements.txt`.
`requirements.txt`.
For example, using the built-in [`venv`][venv] module:

```bash
python -m venv np-tutorials
source np-tutorials/bin/activate
python -m pip install -r requirements.txt -r site/requirements.txt
python -m pip install -r requirements.txt
```

[venv]: https://docs.python.org/3/library/venv.html
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project:
authors: Numpy Community
github: https://github.com/numpy/numpy-tutorials
toc:
- file: site/index.md
- file: content/index.md

- title: Applications
children:
Expand All @@ -23,13 +23,13 @@ project:
- file: content/save-load-arrays.md
- file: content/tutorial-ma.md
- title: Contributing
file: site/contributing.md
file: content/contributing.md
children:
- file: content/tutorial-style-guide.md


site:
template: book-theme
options:
favicon: site/_static/favicon.png
logo: site/_static/numpylogo.svg
favicon: _static/favicon.png
logo: _static/numpylogo.svg
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ pooch # for scipy.datasets
matplotlib
pandas
imageio
# For supporting .md-based notebooks
# For supporting .md-based notebooks and building the site
jupytext
jupyter-book>=2
5 changes: 0 additions & 5 deletions site/_templates/layout.html

This file was deleted.

79 changes: 0 additions & 79 deletions site/conf.py

This file was deleted.

1 change: 0 additions & 1 deletion site/content

This file was deleted.

35 changes: 0 additions & 35 deletions site/make.bat

This file was deleted.

1 change: 0 additions & 1 deletion site/requirements.txt

This file was deleted.

1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ deps =
# We use these files to specify all the dependencies, and below we override
# versions for specific testing schenarios
-rtest_requirements.txt
-rsite/requirements.txt
-rrequirements.txt

oldestdeps: numpy==1.24
Expand Down