Skip to content

Commit 94cd6bb

Browse files
committed
Merge remote-tracking branch 'origin/master' into typed-readonly
2 parents 0be9261 + c602b70 commit 94cd6bb

37 files changed

+789
-2654
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# For archives, substitute the commit hash in the setup.py file.
2+
/setup.py export-subst

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ dist/
1414
docs/build/
1515

1616
# Auto-generated by setup.py
17-
traits/_version.py
17+
traits/version.py

.travis.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: generic
2+
dist: xenial
3+
services:
4+
- xvfb
25

36
env:
47
global:
@@ -16,21 +19,19 @@ matrix:
1619
env: RUNTIME=3.5
1720
- os: osx
1821
env: RUNTIME=3.6
19-
fast_finish: true
2022

2123
cache:
2224
directories:
2325
- "~/.cache"
2426

2527
before_install:
2628
- mkdir -p "${HOME}/.cache/download"
27-
- export DISPLAY=:99.0
28-
- if [[ ${TRAVIS_OS_NAME} == "linux" ]] ; then sh -e /etc/init.d/xvfb start; fi
2929
- if [[ ${TRAVIS_OS_NAME} == 'linux' ]]; then ./install-edm-linux.sh; export PATH="${HOME}/edm/bin:${PATH}"; fi
3030
- if [[ ${TRAVIS_OS_NAME} == 'osx' ]]; then ./install-edm-osx.sh; export PATH="${PATH}:/usr/local/bin"; fi
3131
- edm install -y wheel click coverage
3232
install:
3333
- edm run -- python etstool.py install --runtime=${RUNTIME} || exit
34+
- if [[ ${TRAVIS_EVENT_TYPE} == 'cron' ]]; then edm run -- python etstool.py install --runtime=${RUNTIME} --source || exit; fi
3435
script:
3536
- edm run -- python etstool.py test --runtime=${RUNTIME} || exit
3637
- edm run -- python etstool.py docs --runtime=${RUNTIME} || exit
@@ -39,7 +40,3 @@ after_success:
3940
- edm run -- coverage combine
4041
- edm run -- pip install codecov
4142
- edm run -- codecov
42-
43-
notifications:
44-
email:
45-
- travis-ci@enthought.com

CHANGES.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Traits CHANGELOG
22
================
33

4+
Release 5.1.2
5+
-------------
6+
7+
Released: 2019-07-08
8+
9+
Fixes
10+
11+
* Traits documenter no longer generates bad reST for traits whose definition
12+
spans multiple source lines. (#494)
13+
14+
415
Release 5.1.1
516
-------------
617

ci-doc-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
git+http://github.com/enthought/enthought-sphinx-theme

0 commit comments

Comments
 (0)