Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4cc8f4f
:sparkles: update requirements so xlsxwriter 1.x can be used too
chfw Feb 22, 2019
01b3664
:handshake: update moban family tools and dependencies
chfw Feb 22, 2019
dbd0492
:hammer: relocate yml file
chfw Feb 22, 2019
a812553
:handshake: apply common templates from pyexcel mobans. https://githu…
chfw Nov 10, 2019
f935f34
:handshake: synchronize the organisational meta data
chfw Jun 8, 2020
afda05d
:rocket: github actions for moban, pypi release and automatically ext…
chfw Aug 23, 2020
ddef655
This is an auto-commit, updating project meta data, such as changelog…
chfw Aug 23, 2020
1245692
:fire: remove python tests lower than python 3.6
chfw Sep 19, 2020
0365bae
Merge branch 'dev' of https://github.com/pyexcel/pyexcel-xlsxw into dev
chfw Sep 19, 2020
d86fbdd
This is an auto-commit, updating project meta data, such as changelog…
chfw Sep 19, 2020
267522c
:fire: remove python tests lower than python 3.6
chfw Sep 20, 2020
62f0148
Merge branch 'dev' of https://github.com/pyexcel/pyexcel-xlsxw into dev
chfw Sep 20, 2020
c8789dc
This is an auto-commit, updating project meta data, such as changelog…
chfw Sep 20, 2020
86d5aad
:bug: update moban update code
chfw Sep 20, 2020
cf2281a
Merge branch 'dev' of https://github.com/pyexcel/pyexcel-xlsxw into dev
chfw Sep 20, 2020
6b509af
Update rnd_requirements.txt
chfw Oct 3, 2020
b9bb33f
This is an auto-commit, updating project meta data, such as changelog…
chfw Oct 3, 2020
bf0e271
New style writer (#7)
chfw Oct 3, 2020
241cbe7
:hammer: code refactoring
chfw Oct 6, 2020
3b2da5b
:hammer: code refactoring
chfw Oct 7, 2020
f735599
This is an auto-commit, updating project meta data, such as changelog…
chfw Oct 7, 2020
599123d
:lipstick: update coding style
chfw Oct 7, 2020
3808f3c
Merge branch 'dev' of https://github.com/pyexcel/pyexcel-xlsxw into dev
chfw Oct 7, 2020
0617f1c
:egg: :ferris_wheel: release 0.6.0
chfw Oct 8, 2020
4c8fb9f
:books: update setup.py
chfw Oct 8, 2020
952ab05
:green_heart: udpate unit tests
chfw Oct 8, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: chfw
patreon: chfw
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
29 changes: 29 additions & 0 deletions .github/workflows/moban-update.yml
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
26 changes: 26 additions & 0 deletions .github/workflows/pythonpublish.yml
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/*
Loading