Skip to content

Commit

Permalink
Move to pipenv <3.
Browse files Browse the repository at this point in the history
  • Loading branch information
codito committed Sep 28, 2017
1 parent 6920d24 commit 4e5a987
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 29 deletions.
7 changes: 4 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ install:
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "pip --version"
- cd /D %APPVEYOR_BUILD_FOLDER%
- "pip install -r requirements.txt"
- "python setup.py build"
- "pip install pipenv"
- "pipenv install --dev"
- "pipenv run python setup.py build"
- cd build/exe.win32-3.6
- ps: $env:pomito_zip = "pomito.$($env:APPVEYOR_BUILD_VERSION).win32.zip"
- ps: "& 7z a -r ../$env:pomito_zip ."
Expand All @@ -38,7 +39,7 @@ on_finish:

test_script:
- cd /D %APPVEYOR_BUILD_FOLDER%
- "nosetests"
- "pipenv run nosetests"

artifacts:
- path: build/*.zip
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
.venv/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ env:
- "POMITO_TEST=1"

install:
- "pip install -r requirements.txt"
- "pip freeze"
- pip install pipenv
- pipenv install --dev

script: nosetests
script: pipenv run nosetests

after_success: coveralls
after_success: pipenv run coveralls
32 changes: 32 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
blinker = "*"
coveralls = "*"
mock = "*"
nose = "*"
peewee = "*"
pyfakefs = "*"
pyqt5 = "*"
rednose = "*"
sure = "*"
comtypes = "*"
click = "*"
asana = {git = "git://github.com/codito/asana.git", editable = true, ref = "python3"}
"cx-freeze" = "*"
esky = "*"
pyqtkeybind = {git = "git://github.com/codito/pyqtkeybind.git", editable = true, ref = "master"}

[dev-packages]
flake8 = "*"
jedi = "*"
pudb = "*"
pydocstyle = "*"
nose-pudb = "*"
nose-watcher = "*"

[requires]
python_version = "3.6"
7 changes: 0 additions & 7 deletions development.txt

This file was deleted.

15 changes: 0 additions & 15 deletions requirements.txt

This file was deleted.

0 comments on commit 4e5a987

Please sign in to comment.