Skip to content

Commit

Permalink
Merge pull request #60 from BertrandServin/master
Browse files Browse the repository at this point in the history
Fix broken pip install
  • Loading branch information
degivry committed Apr 2, 2021
2 parents 124fbf0 + bc31ca6 commit 53fa9e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
'''

from __future__ import print_function
from distutils.core import setup
from distutils.extension import Extension
from distutils.command.build_ext import build_ext as _build_ext
from setuptools import setup
from setuptools.extension import Extension
from setuptools.command.build_ext import build_ext as _build_ext
from distutils.errors import CCompilerError
from distutils.spawn import find_executable
import subprocess as sp
Expand Down Expand Up @@ -598,7 +598,7 @@ def get_scipcomponent_folder(comp):

setup(
name='Numberjack',
version='1.2.0',
version='1.2.1',
author='Numberjack Developers',
packages=['Numberjack', 'Numberjack.solvers'],
ext_modules=extensions,
Expand Down

0 comments on commit 53fa9e9

Please sign in to comment.