Skip to content

Commit c19e4c3

Browse files
committed
Fix CI
1 parent 4a74ce2 commit c19e4c3

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Lint
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
lint:

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
env:
66
FORCE_COLOR: 1
77

88
jobs:
9-
build:
9+
test:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3"]
14+
python-version: ["pypy-3.8", "3.7", "3.8", "3.9", "3.10"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
include:
1717
# Include new variables for Codecov

.pre-commit-config.yaml

-12
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,10 @@ repos:
55
- id: pyupgrade
66
args: [--py37-plus]
77

8-
- repo: https://github.com/psf/black
9-
rev: 21.12b0
10-
hooks:
11-
- id: black
12-
args: [--target-version=py36]
13-
14-
- repo: https://github.com/PyCQA/isort
15-
rev: 5.10.1
16-
hooks:
17-
- id: isort
18-
198
- repo: https://github.com/pycqa/flake8
209
rev: 4.0.1
2110
hooks:
2211
- id: flake8
23-
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
2412
args:
2513
- "--max-line-length=88"
2614

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ ISO 8601 date/time parser
99
:target: https://coveralls.io/r/gweis/isodate?branch=master
1010
:alt: Coveralls
1111
.. image:: https://img.shields.io/pypi/v/isodate.svg
12-
:target: https://pypi.python.org/pypi/isodate/
12+
:target: https://pypi.python.org/pypi/isodate/
1313
:alt: Latest Version
1414
.. image:: https://img.shields.io/pypi/l/isodate.svg
15-
:target: https://pypi.python.org/pypi/isodate/
15+
:target: https://pypi.python.org/pypi/isodate/
1616
:alt: License
1717

1818

0 commit comments

Comments
 (0)