Skip to content

Commit bed091d

Browse files
authored
Merge pull request #58 from IdentityPython/develop
New release
2 parents 0f65fd9 + 9937144 commit bed091d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+3510
-2816
lines changed

.isort.cfg

Lines changed: 0 additions & 5 deletions
This file was deleted.

.travis.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,33 @@
11
sudo: false
22
language: python
3+
cache: pip
34
python:
4-
- 3.6
5-
- 3.7
6-
- 3.8
7-
- pypy3
5+
- 3.6
6+
- 3.7
7+
- 3.8
8+
- 3.9-dev
89
addons:
910
apt:
1011
packages:
11-
-
12+
-
1213
install:
13-
- pip install codecov
14-
- pip install tox
15-
- pip install tox-travis
14+
- pip install codecov
15+
- pip install tox tox-travis
16+
- pip install isort black
1617
script:
17-
- codecov --version
18-
- tox
18+
- codecov --version
19+
- tox
20+
- isort --check src tests
21+
- black -l 100 --check src tests
1922
after_success:
20-
- codecov
23+
- codecov
2124
notifications:
2225
email: true
2326
deploy:
2427
provider: pypi
2528
on:
2629
tags: true
27-
distributions: bdist_wheel
30+
distributions: "sdist bdist_wheel"
2831
skip_existing: true
2932
username: __token__
3033
password:

codecov.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
codecov:
2+
branch: develop

0 commit comments

Comments
 (0)