Skip to content

Commit dc6fe00

Browse files
committed
🤝 update project meta
1 parent d4d6172 commit dc6fe00

File tree

5 files changed

+26
-22
lines changed

5 files changed

+26
-22
lines changed

.github/workflows/moban-update.yml

+22-20
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,25 @@ jobs:
55
runs-on: ubuntu-latest
66
name: synchronize templates via moban
77
steps:
8-
- uses: actions/checkout@v2
9-
with:
10-
ref: ${{ github.head_ref }}
11-
- name: Set up Python
12-
uses: actions/setup-python@v1
13-
with:
14-
python-version: '3.7'
15-
- name: check changes
16-
run: |
17-
pip install moban gitfs2 pypifs
18-
moban
19-
git status
20-
git diff --exit-code
21-
- name: Auto-commit
22-
if: failure()
23-
uses: docker://cdssnc/auto-commit-github-action
24-
env:
25-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
with:
27-
args: This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst
8+
- uses: actions/checkout@v2
9+
with:
10+
ref: ${{ github.head_ref }}
11+
- name: Set up Python
12+
uses: actions/setup-python@v1
13+
with:
14+
python-version: '3.7'
15+
- name: check changes
16+
run: |
17+
pip install moban gitfs2 pypifs moban-jinja2-github moban-ansible
18+
moban
19+
git status
20+
git diff --exit-code
21+
- name: Auto-commit
22+
if: failure()
23+
uses: docker://cdssnc/auto-commit-github-action
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
with:
27+
args: >-
28+
This is an auto-commit, updating project meta data,
29+
such as changelog.rst, contributors.rst

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ stages:
3030
env:
3131
- MINREQ=0
3232
stage: moban
33-
install: pip install moban>=0.0.4 gitfs2 pypifs
33+
install: pip install moban gitfs2 pypifs moban-jinja2-github moban-ansible
3434
script:
3535
- moban
3636
- git diff --exit-code

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include README.rst
22
include LICENSE
33
include CHANGELOG.rst
4+
include CONTRIBUTORS.rst
45
recursive-include tests *
56
recursive-include docs *

tests/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ isort
88
collective.checkdocs
99
pygments
1010
moban
11+
moban_jinja2_github

tests/test_bug_fixes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# -*- encoding: utf-8 -*-
33
import os
44

5+
import psutil
56
import pyexcel as pe
67

7-
import psutil
88
from nose import SkipTest
99
from nose.tools import eq_, raises
1010
from pyexcel_io.exceptions import IntegerAccuracyLossError

0 commit comments

Comments
 (0)