Skip to content

Commit

Permalink
Use pip-compile for requirements, and upgrade them
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Chainz committed Aug 24, 2016
1 parent 7f26907 commit cae65d4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
7 changes: 0 additions & 7 deletions requirements-to-freeze.txt

This file was deleted.

6 changes: 6 additions & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
docutils
flake8
nose-parameterized
Pillow
Pygments
pytest
22 changes: 15 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt requirements.in
#
configparser==3.5.0 # via flake8
docutils==0.12
flake8==2.6.0
mccabe==0.5.0
enum34==1.1.6 # via flake8
flake8==3.0.4
mccabe==0.5.2 # via flake8
nose-parameterized==0.5.0
Pillow==3.2.0
py==1.4.31
pycodestyle==2.0.0
pyflakes==1.2.3
Pillow==3.3.1
py==1.4.31 # via pytest
pycodestyle==2.0.0 # via flake8
pyflakes==1.2.3 # via flake8
Pygments==2.1.3
pytest==2.9.2
pytest==3.0.1
4 changes: 2 additions & 2 deletions tests/test_treepoem.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from os import path
from PIL import Image, ImageChops

from nose_parameterized import parameterized
import pytest

import treepoem


@parameterized([
@pytest.mark.parametrize('barcode_type,barcode_data', [
('qrcode', "This is qrcode barcode."),
('azteccode', "This is azteccode barcode."),
('pdf417', "This is pdf417 barcode."),
Expand Down

0 comments on commit cae65d4

Please sign in to comment.