Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 4.3.2
current_version = 0.1.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
serialize =
serialize =
{major}.{minor}.{patch}{releaselevel}
{major}.{minor}.{patch}

Expand Down
60 changes: 50 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ stages:

matrix:
include:
- python: 3.8.0
- python: 3.8.6
env: TOXENV=flake8
os: linux
dist: xenial
dist: focal
stage: lint
- python: 3.8.0
- python: 3.8.6
env: TOXENV=typecheck
os: linux
dist: xenial
dist: focal
stage: lint
- python: 3.8.0
- python: 3.8.6
env: TOXENV=apicheck
os: linux
dist: xenial
dist: focal
stage: lint
- python: 3.8.0
- python: 3.8.6
env: TOXENV=docstyle
os: linux
dist: xenial
dist: focal
stage: lint
- python: 3.8.0
- python: 3.8.6
env: TOXENV=bandit
os: linux
dist: xenial
dist: focal
stage: lint
- python: 3.6.3
env: TOXENV=3.6 RUN_SUITE=y
Expand Down Expand Up @@ -105,6 +105,46 @@ matrix:
- python: 3.8.0
env: TOXENV=3.8 IDENT="3.8.0" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.1
env: TOXENV=3.8 IDENT="3.8.1" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.2
env: TOXENV=3.8 IDENT="3.8.2" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.3
env: TOXENV=3.8 IDENT="3.8.3" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.4
env: TOXENV=3.8 IDENT="3.8.4" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.5
env: TOXENV=3.8 IDENT="3.8.5" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.8.6
env: TOXENV=3.8 IDENT="3.8.6" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.9.0
env: TOXENV=3.9 IDENT="3.9.0" RUN_SUITE=y
os: linux
dist: focal
stage: test
- python: 3.9.1
env: TOXENV=3.9 IDENT="3.9.1" RUN_SUITE=y
os: linux
dist: xenial
stage: test

Expand Down
Loading