Skip to content

Commit

Permalink
Make compatible with Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
numirias committed Jan 31, 2018
1 parent d882ea4 commit 936c11b
Show file tree
Hide file tree
Showing 9 changed files with 955 additions and 57 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ __pycache__/
build/
dist/
TODO
.pytest_cache/
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: python
python:
- "3.5"
- "3.6"
addons:
apt:
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
init:
pip install pipenv --upgrade
pipenv install --sequential --dev --skip-lock
# We need to install xcffib first
pipenv install --skip-lock "xcffib>=0.5.0"
pipenv install --verbose --sequential --dev --skip-lock
cd lib/qtile/ && python ./libqtile/ffi_build.py
test:
pipenv run pytest -v --cov plasma --cov-report term-missing:skip-covered tests/
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ name = "pypi"

[packages]

xcffib = ">=0.5.0"
cffi = "*"
xcffib = "*"
cairocffi = "*"
qtile = "*"

Expand Down
102 changes: 49 additions & 53 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 936c11b

Please sign in to comment.