Commit a6399b1d authored by nd-02110114's avatar nd-02110114
Browse files

💚 fix ci

parent c68ab3c9
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ jobs:
      language: c
      python: '3.7'
      os: windows

cache: pip
install:
  - if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
@@ -33,8 +33,6 @@ install:
  - bash scripts/install_deepchem_conda.sh deepchem
  - conda activate deepchem
  - python setup.py install
  - pip install coveralls mypy flake8 yapf==0.22.0

script:
  - bash devtools/run_yapf.sh
  - bash devtools/run_flake8.sh
@@ -47,12 +45,9 @@ script:
  - if [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then
      find ./deepchem -name "*.py" ! -name '*load_dataset_template.py' | xargs python -m doctest -v;
    fi


after_success:
  - echo $TRAVIS_SECURE_ENV_VARS
  - coveralls

deploy:
  provider: pypi
  username: __token__

requirements-pyg.txt

0 → 100644
+5 −0
Original line number Diff line number Diff line
torch-scatter==2.0.5
torch-sparse==0.6.6
torch-cluster==1.5.6
torch-spline-conv==1.2.0
torch-geometric==1.6.0

requirements-test.txt

0 → 100644
+7 −0
Original line number Diff line number Diff line
coveralls
flake8
flaky
mypy
pytest
pytest-cov
yapf==0.22.0

requirements-torch.txt

0 → 100644
+2 −0
Original line number Diff line number Diff line
torch==1.5.1
torchvision==0.6.1
Loading