Skip to content

Commit

Permalink
update to remove orderedset implem
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinDavid committed Sep 25, 2022
1 parent 4810c17 commit 2ea9cd9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ sphinx-autodoc-typehints

# added for mock
psutil
orderedset
ordered_set
2 changes: 1 addition & 1 deletion qsynthesis/algorithms/synthesizer_tdbu.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from enum import IntEnum

# third-party modules
from orderedset import OrderedSet
from ordered_set import OrderedSet

# qsynthesis modules
from qsynthesis.tables.base import InputOutputOracle
Expand Down
11 changes: 0 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,8 @@
# coding: utf-8
"""Installation script for qsynthesis module."""

import sys
from setuptools import setup, find_packages

try:
# Check that we have the appropriate Triton version
import triton
if triton.VERSION.BUILD < 1467:
print("Triton >=0.8 is required")
sys.exit(1)
except ImportError:
print("Triton module should be installed first")
#sys.exit(1)

generate_deps = ['pydffi>=0.9.1', 'sympy']
server_deps = ['fastapi', 'uvicorn']
assembly_deps = ["arybo", "llvmlite"]
Expand Down

0 comments on commit 2ea9cd9

Please sign in to comment.