Skip to content

Commit

Permalink
Devops: fix nightly build vs aiida-core develop branch (#646)
Browse files Browse the repository at this point in the history
The nightly build versus the `aiida-core` develop branch has been
failing. Here we make two adjustments:

* Remove the tests for Python 3.6 since `aiida-core` has dropped support
for this version.
* First install the develop branch of `aiida-core`, then
`aiida-quantumespresso. This way there are no dependency conflicts (e.g.
at this moment due to the switch from `tornado` to `asyncio`.
  • Loading branch information
mbercx authored Feb 18, 2021
1 parent ae410f6 commit bde3225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8]

services:
postgres:
Expand Down Expand Up @@ -57,8 +57,8 @@ jobs:
id: install
run: |
pip install --upgrade setuptools
pip install git+https://github.com/aiidateam/aiida-core@develop#egg=aiida-core[atomic_tools]
pip install -e .[tests]
pip install git+https://github.com/aiidateam/aiida-core@develop
reentry scan
- name: Run pytest
Expand Down

0 comments on commit bde3225

Please sign in to comment.