Skip to content

Commit ec08e71

Browse files
committed
🤝 update project static information
1 parent 0df1eb7 commit ec08e71

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: 3.8
1515
- name: lint
1616
run: |
17-
pip install flake8
18-
pip install -r tests/requirements.txt
17+
pip --use-deprecated=legacy-resolver install flake8
18+
pip --use-deprecated=legacy-resolver install -r tests/requirements.txt
1919
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long .
2020
python setup.py checkdocs

.github/workflows/moban-update.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
with:
1010
ref: ${{ github.head_ref }}
11+
token: ${{ secrets.PAT }}
1112
- name: Set up Python
1213
uses: actions/setup-python@v1
1314
with:
@@ -20,10 +21,8 @@ jobs:
2021
git diff --exit-code
2122
- name: Auto-commit
2223
if: failure()
23-
uses: docker://cdssnc/auto-commit-github-action
24-
env:
25-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
uses: stefanzweifel/git-auto-commit-action@v4
2625
with:
27-
args: >-
26+
commit_message: >-
2827
This is an auto-commit, updating project meta data,
2928
such as changelog.rst, contributors.rst

.github/workflows/tests.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
matrix:
1010
python-version: [3.6, 3.7, 3.8, 3.9]
1111
os: [macOs-latest, ubuntu-latest, windows-latest]
12+
exclude:
13+
- os: macOs-latest
14+
python-version: 3.6
1215

1316
runs-on: ${{ matrix.os }}
1417
name: run tests
@@ -20,8 +23,8 @@ jobs:
2023
python-version: ${{ matrix.python-version }}
2124
- name: install
2225
run: |
23-
pip install -r requirements.txt
24-
pip install -r tests/requirements.txt
26+
pip --use-deprecated=legacy-resolver install -r requirements.txt
27+
pip --use-deprecated=legacy-resolver install -r tests/requirements.txt
2528
- name: test
2629
run: |
2730
pip freeze

CONTRIBUTORS.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
4 contributors
3+
5 contributors
44
================================================================================
55

66
In alphabetical order:
@@ -9,3 +9,4 @@ In alphabetical order:
99
* `Mateusz Konieczny <https://github.com/matkoniecz>`_
1010
* `Michael K. <https://github.com/michael-k>`_
1111
* `Stephen J. Fuhry <https://github.com/fuhrysteve>`_
12+
* `vinraspa <https://github.com/vinraspa>`_

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2020 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2021 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Then install relevant development requirements:
348348
#. pip install -r tests/requirements.txt
349349

350350
Once you have finished your changes, please provide test case(s), relevant documentation
351-
and update CHANGELOG.rst.
351+
and update changelog.yml
352352

353353
.. note::
354354

@@ -367,7 +367,7 @@ On Linux/Unix systems, please launch your tests like this::
367367

368368
$ make
369369

370-
On Windows systems, please issue this command::
370+
On Windows, please issue this command::
371371

372372
> test.bat
373373

@@ -379,7 +379,7 @@ Please run::
379379

380380
$ make format
381381

382-
so as to beautify your code otherwise travis-ci may fail your unit test.
382+
so as to beautify your code otherwise your build may fail your unit test.
383383

384384

385385
Installation Note

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# -- Project information -----------------------------------------------------
2323

2424
project = 'pyexcel-ods3'
25-
copyright = '2015-2020 Onni Software Ltd.'
25+
copyright = '2015-2021 Onni Software Ltd.'
2626
author = 'C.W.'
2727
# The short X.Y version
2828
version = '0.6.0'

0 commit comments

Comments
 (0)