Skip to content

Commit

Permalink
up python version number to 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Nelson committed Oct 10, 2017
1 parent e46fb15 commit 51705cd
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 43 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ requirements.txt: Pipfile.lock
build-without-docker: requirements.txt Pipfile.lock
mkdir -p build/wheel
pipenv install --three --dev
pipenv run python3.5 scripts/doc_rst_convert.py
pipenv run python3.5 setup.py build
pipenv run python3.6 scripts/doc_rst_convert.py
pipenv run python3.6 setup.py build
rm README.rst

dockerised-test: docker-image
Expand Down Expand Up @@ -51,14 +51,14 @@ clean-pyc:
find . -name '*~' -exec rm -f {} +

install-pipenv: clean
pipenv run pip3.5 install -e .
pipenv run pip3.6 install -e .

install-global: clean
python3.5 scripts/doc_rst_convert.py
pip3.5 install -e .
python3.6 scripts/doc_rst_convert.py
pip3.6 install -e .

pypi:
python3.5 scripts/doc_rst_convert.py
python3.5 setup.py bdist_wheel --universal
python3.5 setup.py sdist bdist_wheel upload
python3.6 scripts/doc_rst_convert.py
python3.6 setup.py bdist_wheel --universal
python3.6 setup.py sdist bdist_wheel upload
rm README.rst
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ verify_ssl = true
url = "https://pypi.python.org/simple"

[requires]
python_version = "3.5"
python_version = "3.6"

[packages]
appdirs = "*"
Expand Down
68 changes: 34 additions & 34 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
appdirs==1.4.3
certifi==2017.7.27.1
chardet==3.0.4
dateparser==0.6.0
diff-match-patch==20121119
ecdsa==0.13
funcy==1.9.1
humanize==0.5.1
idna==2.6
langdetect==1.0.7
maya==0.3.3
pendulum==1.3.0
pipfile==0.0.2
prettytable==0.7.2
pycrypto==2.6.1
pylibscrypt==1.6.1
python-dateutil==2.6.1
pytz==2017.2
pytzdata==2017.2.2
regex==2017.09.23
requests==2.18.4
ruamel.yaml==0.15.34
scrypt==0.8.0
six==1.11.0
toml==0.9.3.1
toolz==0.8.2
tzlocal==1.4
ujson==1.35
urllib3==1.22
voluptuous==0.10.5
w3lib==1.18.0
alabaster==0.7.10
astroid==1.5.3
autopep8==1.3.2
babel==2.5.1
commonmark==0.5.4
docutils==0.14
imagesize==0.7.1
isort==4.2.15
jinja2==2.9.6
lazy-object-proxy==1.3.1
markupsafe==1.0
mccabe==0.6.1
pep8==1.7.0
pip==9.0.1
py==1.4.34
pycodestyle==2.3.1
pygments==2.2.0
pylint==1.7.4
pypandoc==1.4
pytest==3.2.3
pytest-pylint==0.7.1
recommonmark==0.4.0
setuptools==36.5.0
snowballstemmer==1.2.1
sphinx==1.6.4
sphinxcontrib-programoutput==0.11
sphinxcontrib-restbuilder==0.1
sphinxcontrib-websupport==1.0.1
wheel==0.30.0
wrapt==1.10.11
yapf==0.18.0

0 comments on commit 51705cd

Please sign in to comment.