Skip to content

WIP Use pyproject.toml to specify build requirements #129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
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
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ matrix:
sudo: true

install:
- pip install -U tox-travis coveralls pip setuptools wheel
- python setup.py build_ext --inplace
- pip install -U tox-travis coveralls pip setuptools wheel setuptools-scm py-cpuinfo

script:
- tox
Expand Down
20 changes: 1 addition & 19 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,16 @@ environment:

matrix:

- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"

- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
DISTUTILS_USE_SDK: "1"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"

- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"

- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7"

- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7"

Expand All @@ -43,16 +31,10 @@ install:
- "%CMD_IN_ENV% python -m pip install -U pip setuptools wheel"
- "%CMD_IN_ENV% python -m pip install -rrequirements_dev.txt"
- "%CMD_IN_ENV% python -m pip install -rrequirements_test.txt"
- "%CMD_IN_ENV% python setup.py build_ext --inplace"
- "%CMD_IN_ENV% python -m pip install ."
- "%CMD_IN_ENV% python -m pip freeze"

build: off

test_script:
- "%CMD_IN_ENV% python -m pytest -v numcodecs"

after_test:
- "%CMD_IN_ENV% python setup.py bdist_wheel"

artifacts:
- path: dist\*
Loading