Skip to content

Commit 0c42e19

Browse files
committed
Added Python3.8
1 parent 3666545 commit 0c42e19

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ language:
99

1010
python:
1111
- 2.7
12-
- 3.5
1312
- 3.6
1413
- 3.7
14+
- 3.8
1515

1616
env:
1717
global:

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ readme:
2323
sed -i '/(#$(PACKAGE)-py)/,+2d' README.md
2424

2525
release:
26-
git checkout master && git pull origin && git fetch -p
27-
git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
28-
@echo "Releasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort" && sleep 10
26+
git checkout master && git pull origin && git fetch -p && git diff
27+
@echo "Continuing in 10 seconds. Press <CTRL+C> to abort\n" && sleep 10
28+
@git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
29+
@echo "\nReleasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort" && sleep 10
2930
git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)'
3031
git push --follow-tags
3132

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package=tableschema
33
skip_missing_interpreters=true
44
envlist=
55
py27
6-
py35
76
py36
87
py37
8+
py38
99

1010
[testenv]
1111
deps=

0 commit comments

Comments
 (0)