Skip to content

Commit 139185b

Browse files
committed
Bad readme title
1 parent 951d8b8 commit 139185b

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.circleci/config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="images/logo/logo.png" width=40 /> pyOpenSci Governance
1+
# <img src="images/logo/logo.png" width=40 /> pyOpenSci Scientific Python Open Source Packaging Guide
22

33
![GitHub release (latest by date)](https://img.shields.io/github/v/release/pyopensci/python-package-guide?color=purple&display_name=tag&style=plastic)
44

0 commit comments

Comments
 (0)