Skip to content

Commit

Permalink
Revert setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
fikisipi committed May 14, 2019
1 parent 545e35a commit b7932d4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ matrix:
- pyenv global 3.5.5
script:
- pyenv global 3.5.5
- python -m pip install --upgrade setuptools wheel
- python -m pip install scikit-build ninja
- python setup.py bdist_wheel
- pyenv global 3.6.5
- python -m pip install --upgrade setuptools wheel
- python -m pip install scikit-build ninja
- python setup.py bdist_wheel
- pyenv global 3.7.0b3
- python -m pip install --upgrade setuptools wheel
- python -m pip install scikit-build ninja
- python setup.py bdist_wheel
deploy:
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ environment:
install:
# We need wheel installed to build wheels
- cmd: set PATH=%PYTHON%;%PATH%
- cmd: "%PYTHON%\\python.exe -m pip install --upgrade setuptools wheel"
- cmd: "%PYTHON%\\python.exe -m pip install wheel scikit-build ninja"

build: off
Expand Down
1 change: 0 additions & 1 deletion build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ MPATH="$PATH"
# Compile wheels
for PYBIN in /opt/python/cp3*/bin; do
PATH="${PYBIN}/:${MPATH}"
"${PYBIN}/pip" install --upgrade setuptools wheel
"${PYBIN}/pip" install -r /io/dev-requirements.txt
"${PYBIN}/pip" wheel /io/ -w dist/
/bin/rm -rf /io/_skbuild
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from skbuild import setup

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
Expand All @@ -9,10 +7,10 @@
setup(
name="elkai",
description="A TSP solver for Python without any dependencies.",
long_description=long_description,
long_description_content_type='text/markdown',
#long_description=long_description,
#long_description_content_type='text/markdown',
url="https://github.com/pyEntropy/elkai",
version="0.0.6",
version="0.0.7",
packages=['elkai'],
author="Filip Dimitrovski",
license="MIT",
Expand Down

0 comments on commit b7932d4

Please sign in to comment.