Skip to content

Commit

Permalink
fix: fix the versions of torch-geometric and torch-scatter, and ignor…
Browse files Browse the repository at this point in the history
…e flake8 linting on template files;
  • Loading branch information
WenjieDu committed Oct 9, 2023
1 parent 2decac5 commit da777f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install other dependencies
run: |
pip install pypots
pip install torch-geometric torch-scatter torch-sparse -f "https://data.pyg.org/whl/torch-${{ matrix.torch-version }}+cpu.html"
pip install torch-geometric==2.3.1 torch-scatter==2.1.1 torch-sparse -f "https://data.pyg.org/whl/torch-${{ matrix.torch-version }}+cpu.html"
pip install -e ".[dev]"
- name: Fetch the test environment details
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ max-line-length = 120
extend-ignore =
# why ignore E203? Refer to https://github.com/PyCQA/pycodestyle/issues/373
E203,
# ignore some errors that are not important in template files
exclude = pypots/*/template


[options.extras_require]
Expand Down

0 comments on commit da777f4

Please sign in to comment.