File tree Expand file tree Collapse file tree 6 files changed +125
-4
lines changed Expand file tree Collapse file tree 6 files changed +125
-4
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.1
2
+ jobs :
3
+ build_book :
4
+ docker :
5
+ - image : cimg/python:3.9
6
+ steps :
7
+ - checkout
8
+ - run :
9
+ name : setup environment
10
+ command : |
11
+ pip install --upgrade pip
12
+ pip install nox
13
+ pip list
14
+ - run :
15
+ name : Build book html
16
+ command : nox -s docs
17
+
18
+ - store_artifacts :
19
+ path : _build/html
20
+ destination : html
21
+
22
+ # Tell CircleCI to use this workflow when it builds the site
23
+ workflows :
24
+ version : 2
25
+ build_book :
26
+ jobs :
27
+ - build_book
Original file line number Diff line number Diff line change 1
- # <img src =" images/logo/logo.png " width =40 /> pyOpenSci Packaging Guide
1
+ # <img src =" images/logo/logo.png " width =40 /> pyOpenSci Scientific Python Open Source Packaging Guide
2
2
3
3
![ GitHub release (latest by date)] ( https://img.shields.io/github/v/release/pyopensci/python-package-guide?color=purple&display_name=tag&style=plastic )
4
4
Original file line number Diff line number Diff line change
1
+ html , body {
2
+ font-size : 1.1rem ;
3
+ }
4
+
5
+ body p {
6
+ /* font-family: $header-font; */
7
+ font-size : 1em ;
8
+ font-family : 'Verdana' , sans-serif!important ;
9
+ color : # 555!important ;
10
+ line-height : 1.5em ;
11
+ }
12
+
13
+ h1 , h2 , h3 {
14
+ font-family : 'Trebuchet MS' , sans-serif;
15
+ color : # 333!important ;
16
+ }
17
+
18
+ h1 {
19
+ padding-bottom : 1em !important ;
20
+ }
21
+
22
+ h3 {
23
+ padding-top : 1.4em ;
24
+ margin-bottom : 14px ;
25
+ }
26
+
27
+ /* hide the right sidebar */
28
+ .col-md-3 .bd-toc .show .noprint {
29
+ display : none!important ;
30
+ }
31
+
32
+ # main-content {
33
+ max-width : 80% ;
34
+ }
35
+
36
+ .bd-toc {
37
+ color : # 1abc9c ;
38
+ }
39
+
40
+ @media (min-width : 720px ){
41
+ .col-md-3 {
42
+ flex : 0 0 25% ;
43
+ /* max-width: 25%; */
44
+ display : none!important ;
45
+ }
46
+ }
47
+
48
+
49
+ /* HEADER BLOCK 2 */
50
+ div .header__block {
51
+ color : # 222 ;
52
+ }
53
+
54
+ .announcement div {
55
+ background-color : # ccc ;
56
+ }
57
+
58
+ .header-item .announcement , .header-item .announcement .noprint {
59
+ background-color : # ccc ;
60
+ }
61
+
62
+ div .announcement .header-item .noprint , header-item .announcement {
63
+ background-color : # ccc!important ;
64
+ }
65
+
66
+ /* notes */
67
+
68
+ div .admonition .note .admonition-title , div .admonition .note .admonition-title ::before {
69
+ background-color : # C1CFD4 ;
70
+ color : # 222 ;
71
+
72
+ }
73
+
74
+ div .admonition .note {
75
+ border-color : # C1CFD4 ;
76
+ background-color : # E3F4FA ;
77
+ }
78
+
79
+
80
+ div .admonition .important .admonition-title , div .admonition .important .admonition-title ::before {
81
+ background-color : # 107762 ;
82
+ color : # ffffff!important ;
83
+ }
84
+
85
+ div .admonition .important .admonition-title {
86
+ background-color : # 107762 ;
87
+ border-color : # 1abc9c ;
88
+ }
89
+
90
+ div .admonition .important {
91
+ border-color : # 0e6654 ;
92
+ background-color : # ecfcf9 ;
93
+ }
Original file line number Diff line number Diff line change 32
32
# ones.
33
33
extensions = [
34
34
"myst_nb" ,
35
- # "myst_parser",
36
35
"sphinx_design" ,
37
36
"sphinx_copybutton" ,
38
37
"sphinx.ext.intersphinx"
47
46
"repository_url" : "https://github.com/pyopensci/python-package-guide" ,
48
47
"use_repository_button" : True ,
49
48
"google_analytics_id" : "UA-141260825-1" ,
49
+ "show_toc_level" : 1 ,
50
+ "toc_title" : "On this page" ,
50
51
"external_links" : [
51
- {"name" : "link-one-name" , "url" : "https://www.pyopensci.org" },
52
- {"name" : "link-two-name" , "url" : "https://pyopensci.org" }
52
+ {"pyOpenSci Website" : "link-one-name" , "url" : "https://www.pyopensci.org" }
53
53
],
54
54
"announcement" : "🚧 UNDER CONSTRUCTION: this guide is under heavy construction right now. 🚧"
55
55
}
79
79
#
80
80
html_theme = 'sphinx_book_theme'
81
81
html_static_path = ["_static" ]
82
+ html_css_files = ["pyos.css" ]
82
83
html_title = "pyOpenSci Package Guide"
83
84
html_logo = "images/logo/logo.png"
84
85
You can’t perform that action at this time.
0 commit comments