Skip to content

Commit

Permalink
Merge pull request #462 from nucleic/cis
Browse files Browse the repository at this point in the history
cis: prefer installing latest versions of dependencies using git+https
  • Loading branch information
MatthieuDartiailh committed Dec 10, 2021
2 parents efe65fe + ff2159c commit dc36cf9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ install:

# At the time of writing, the setup.py says Enaml depends on a dev version
# of Atom which is not on PyPI. Install straight from GitHub.
- pip install https://github.com/nucleic/cppy/tarball/main
- pip install https://github.com/nucleic/atom/tarball/main
- pip install https://github.com/nucleic/kiwi/tarball/main
- pip install git+https://github.com/nucleic/cppy@main
- pip install git+https://github.com/nucleic/atom@main
- pip install git+https://github.com/nucleic/kiwi@main

- if %PYQT_VERSION%==5 pip install pyqt5
- ps: if ($env:QT_API -eq "pyside2") {pip install pyside2}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install ply
pip install https://github.com/MatthieuDartiailh/bytecode/tarball/main
pip install https://github.com/nucleic/cppy/tarball/main
pip install https://github.com/nucleic/atom/tarball/main
pip install https://github.com/nucleic/kiwi/tarball/main
pip install git+https://github.com/MatthieuDartiailh/bytecode@main
pip install git+https://github.com/nucleic/cppy@main
pip install git+https://github.com/nucleic/atom@main
pip install git+https://github.com/nucleic/kiwi@main
- name: Install Qt bindings
run: |
pip install numpy qtpy '${{matrix.qt-binding}}'
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ before_install:
- $PIP_INSTALL bytecode

# Install the dev version of the other nucleic projects
- $PIP_INSTALL https://github.com/nucleic/cppy/tarball/main
- $PIP_INSTALL https://github.com/nucleic/atom/tarball/main
- $PIP_INSTALL https://github.com/nucleic/kiwi/tarball/main
- $PIP_INSTALL git+https://github.com/nucleic/cppy@main
- $PIP_INSTALL git+https://github.com/nucleic/atom@main
- $PIP_INSTALL git+https://github.com/nucleic/kiwi@main

# Intall test tools (we require pytest > 3.3 to get the builtin logging
# features)
Expand Down

0 comments on commit dc36cf9

Please sign in to comment.