Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REP 2004 extras #235

Merged
merged 12 commits into from
Mar 6, 2020
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ python:
# command to install dependencies
install:
- pip install docutils
- pip install xmlschema
# xmlschema 1.1 dropped support for Python 2
- if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then pip install "xmlschema<1.1"; else pip install xmlschema; fi
# command to run tests
script:
- make
Expand Down
Loading