Skip to content

Commit ec9e418

Browse files
authored
Merge pull request #1 from rossbar/example-site
Replace example site with devstats proof-of-concept
2 parents 7f7634d + 501ffe5 commit ec9e418

11 files changed

Lines changed: 131 additions & 293 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ __pycache__/*
33
*.swp
44
*.egg-info
55
_data/*
6-
doc/_build/*
7-
doc/content/_generated/*
6+
site/_build/*
7+
site/content/_generated/*
88
# Ignore text version of issues table
99
top_issues_table.md

doc/content/basic_graph_analysis.md

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

doc/content/edge_counting.md

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

doc/index.md

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ def _get_reqs(fname):
2929
python_requires=">=3.6", # For f-strings
3030
install_requires=_get_reqs("requirements.txt"),
3131
extras_require={
32-
"docs" : _get_reqs("doc/requirements.txt"),
32+
"docs" : _get_reqs("site/requirements.txt"),
3333
}
3434
)
File renamed without changes.

doc/conf.py renamed to site/conf.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'static-issues-summary'
21-
copyright = '2020, rossbar'
20+
project = 'devstats.poc'
21+
copyright = '2022, scientific Python community'
2222
author = 'rossbar'
2323

2424

@@ -28,11 +28,9 @@
2828
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929
# ones.
3030
extensions = [
31-
'myst_nb',
31+
"myst_nb",
3232
]
3333

34-
numfig = True
35-
3634
# Add any paths that contain templates here, relative to this directory.
3735
templates_path = ['_templates']
3836

site/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Scientific Python Devstats
2+
==========================
3+
4+
This website tracks the recent development history of the scientific Python
5+
ecosystem.
6+
7+
```{toctree}
8+
---
9+
maxdepth: 1
10+
---
11+
12+
numpy_issues
13+
```
File renamed without changes.

0 commit comments

Comments
 (0)