Skip to content
This repository has been archived by the owner on Dec 25, 2019. It is now read-only.

Commit

Permalink
Fix python 3.4 compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NyanKiyoshi committed Sep 17, 2018
1 parent 3170afc commit 51b10b2
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 503 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ init:
- SET PATH=%PYTHON%;%PATH%

install:
- python -m pip install -r requirements.txt
- python -m pip install -r requirements-dev.txt
- python setup.py develop

build: false

Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ python:
- "pypy3"
install:
- pip install codecov pytest-cov uwsgi
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- rm requirements.txt
- nvm install 8
- npm i
- npm run build-assets --production
Expand Down
19 changes: 6 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,26 +59,21 @@ test-verbose:
test-coverage:
pipenv run py.test -v --cov $(MODULE) --cov-report term-missing

dists: requirements sdist bdist wheels
dists: sdist bdist wheels

requirements:
pipenv run pipenv_to_requirements -f

release: requirements

sdist: requirements
sdist:
pipenv run python setup.py sdist

bdist: requirements
bdist:
pipenv run python setup.py bdist

wheels: requirements
wheels:
pipenv run python setup.py bdist_wheel

pypi-publish: build release
pypi-publish: build
pipenv run twine upload --repository pypi dist/*.whl

pypi-test-publish: build release
pypi-test-publish: build
pipenv run twine upload --repository testpypi dist/*.whl

update:
Expand All @@ -92,8 +87,6 @@ push: githook
clean:
pipenv --rm

prepare-release: requirements

# aliases to gracefully handle typos on poor dev's terminal
check: checks
devel: dev
Expand Down
27 changes: 0 additions & 27 deletions Pipfile

This file was deleted.

Loading

0 comments on commit 51b10b2

Please sign in to comment.