-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from pyexcel/dev
release 0.6.0
- Loading branch information
Showing
39 changed files
with
471 additions
and
353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These are supported funding model platforms | ||
|
||
github: chfw | ||
patreon: chfw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
With your PR, here is a check list: | ||
|
||
- [ ] Has test cases written? | ||
- [ ] Has all code lines tested? | ||
- [ ] Has `make format` been run? | ||
- [ ] Please update CHANGELOG.yml(not CHANGELOG.rst) | ||
- [ ] Passes all Travis CI builds | ||
- [ ] Has fair amount of documentation if your change is complex | ||
- [ ] Agree on NEW BSD License for your contribution |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
on: [push] | ||
|
||
jobs: | ||
run_moban: | ||
runs-on: ubuntu-latest | ||
name: synchronize templates via moban | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.7' | ||
- name: check changes | ||
run: | | ||
pip install moban gitfs2 pypifs moban-jinja2-github moban-ansible | ||
moban | ||
git status | ||
git diff --exit-code | ||
- name: Auto-commit | ||
if: failure() | ||
uses: docker://cdssnc/auto-commit-github-action | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
args: >- | ||
This is an auto-commit, updating project meta data, | ||
such as changelog.rst, contributors.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[settings] | ||
line_length=79 | ||
known_first_party=lml, pyexcel_io, odf | ||
known_third_party=nose | ||
indent=' ' | ||
multi_line_output=3 | ||
length_sort=1 | ||
default_section=FIRSTPARTY | ||
no_lines_before=LOCALFOLDER | ||
sections=FUTURE,STDLIB,FIRSTPARTY,THIRDPARTY,LOCALFOLDER |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% extends "travis.yml.jj2" %} | ||
{%block extra_matrix %} | ||
env: | ||
- MINREQ=1 | ||
{%endblock%} | ||
{%block custom_python_versions%} | ||
python: | ||
- 3.8 | ||
- 3.7 | ||
- 3.6 | ||
{%endblock%} | ||
{%block pypi_deployment%} | ||
{%endblock %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,10 @@ | ||
requires: | ||
- type: git | ||
url: https://github.com/moremoban/pypi-mobans | ||
submodule: true | ||
- https://github.com/pyexcel/pyexcel-mobans | ||
overrides: "git://github.com/pyexcel/pyexcel-mobans!/mobanfile.yaml" | ||
configuration: | ||
configuration_dir: "pyexcel-mobans:config" | ||
template_dir: | ||
- "pyexcel-mobans:templates" | ||
- "pypi-mobans:templates" | ||
- ".moban.d" | ||
configuration: pyexcel-ods.yml | ||
targets: | ||
- README.rst: README.rst | ||
- setup.py: setup.py | ||
- README.rst: custom_README.rst.jj2 | ||
- setup.py: custom_setup.py.jj2 | ||
- "docs/source/conf.py": "docs/source/conf.py.jj2" | ||
- .travis.yml: travis.yml | ||
- .travis.yml: custom_travis.yml.jj2 | ||
- .gitignore: gitignore.jj2 | ||
- requirements.txt: requirements.txt | ||
- LICENSE: NEW_BSD_LICENSE.jj2 | ||
- MANIFEST.in: MANIFEST.in.jj2 | ||
- "tests/requirements.txt": "tests/requirements.txt" | ||
- test.sh: test.script.jj2 | ||
- test.bat: test.script.jj2 | ||
- "tests/test_filter.py": "tests/test_filter.py.jj2" | ||
- "tests/test_formatters.py": "tests/test_formatters.py" | ||
- "tests/test_stringio.py": "tests/test_stringio.py.jj2" | ||
- "tests/test_writer.py": "tests/test_writer.py.jj2" | ||
- "tests/base.py": "tests/base.py.jj2" | ||
- output: CHANGELOG.rst | ||
configuration: changelog.yml | ||
template: CHANGELOG.rst.jj2 | ||
- lint.sh: lint.script.jj2 |
Oops, something went wrong.