Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions .github/workflows/ironpython.yml

This file was deleted.

30 changes: 1 addition & 29 deletions src/compas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import print_function
# ruff: noqa: F401

import os

Expand Down Expand Up @@ -103,34 +103,6 @@
pass


__all__ = [
"WINDOWS",
"LINUX",
"OSX",
"MONO",
"IPY",
"RHINO",
"BLENDER",
"PY2",
"PY3",
"devday",
"is_windows",
"is_linux",
"is_osx",
"is_mono",
"is_ironpython",
"is_rhino",
"is_blender",
"is_grasshopper",
"get",
"json_dump",
"json_load",
"json_dumps",
"json_dumpz",
"json_loads",
"json_loadz",
]

__all_plugins__ = [
"compas.geometry.booleans_shapely",
"compas.scene",
Expand Down
6 changes: 1 addition & 5 deletions src/compas/_iotools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

import io
from contextlib import contextmanager

try:
from urllib.request import urlopen
except ImportError:
from urllib2 import urlopen
from urllib.request import urlopen


@contextmanager
Expand Down
11 changes: 1 addition & 10 deletions src/compas/colors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
"""
This package defines a color and color map class,
that can be used to work wihth colors in a consistent way across color spaces.
"""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
# ruff: noqa: F401

from .color import Color
from .colormap import ColorMap
from .colordict import ColorDict

__all__ = ["Color", "ColorMap", "ColorDict"]
Loading
Loading