diff --git a/CHANGELOG.md b/CHANGELOG.md index 1604434e4d3d..d1efb001dd73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Changed `compas_ghpython.artists.MeshArtist.draw_vertexlabels` to use the colors of the vertex color dict. * Changed `compas_ghpython.artists.MeshArtist.draw_edgelabels` to use the colors of the edge color dict. * Changed `compas_ghpython.artists.MeshArtist.draw_facelabels` to use the colors of the face color dict. +* Changed raw github content path for `compas.get`. ### Removed diff --git a/src/compas/__init__.py b/src/compas/__init__.py index 97ffe14ae457..691e617f5910 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -212,7 +212,7 @@ def get(filename): if os.path.exists(localpath): return localpath else: - return "https://github.com/compas-dev/compas/raw/main/samples/{}".format(filename) + return "https://raw.githubusercontent.com/compas-dev/compas/main/src/compas/data/samples/{}".format(filename) def get_bunny(localstorage=None):