Skip to content

Commit

Permalink
Merge pull request #6 from aidos-lab/mantra-dev
Browse files Browse the repository at this point in the history
Merge better URL handling
  • Loading branch information
ErnstRoell authored Jun 11, 2024
2 parents 61258b1 + 284c0a8 commit a999b50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 23 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dataset_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
# if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
body_path: CHANGELOG.md
generate_release_notes: true
make_latest: true
files: |
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/pylint.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MANTRA: Manifold Triangulations Assembly

[![Maintainability](https://api.codeclimate.com/v1/badges/82f86d7e2f0aae342055/maintainability)](https://codeclimate.com/github/aidos-lab/MANTRA/maintainability) ![GitHub contributors](https://img.shields.io/github/contributors/aidos-lab/MANTRA) ![GitHub](https://img.shields.io/github/license/aidos-lab/MANTRA) ![pylint]()
[![Maintainability](https://api.codeclimate.com/v1/badges/82f86d7e2f0aae342055/maintainability)](https://codeclimate.com/github/aidos-lab/MANTRA/maintainability) ![GitHub contributors](https://img.shields.io/github/contributors/aidos-lab/MANTRA) ![GitHub](https://img.shields.io/github/license/aidos-lab/MANTRA)

## Getting the Dataset

Expand Down
3 changes: 1 addition & 2 deletions mantra/simplicial.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ def __init__(
self.manifold = manifold
root += "/simplicial"
self.version = version
self.url = f"https://github.com/aidos-lab/MANTRADataset/releases/\
{self.version}/download/{self.manifold}_manifolds.json.gz"
self.url = f"https://github.com/aidos-lab/MANTRADataset/releases/{self.version}/download/{self.manifold}_manifolds.json.gz" # noqa
super().__init__(root, transform, pre_transform, pre_filter)
self.load(self.processed_paths[0])

Expand Down

0 comments on commit a999b50

Please sign in to comment.