Skip to content

Commit

Permalink
Environment markers with correct spacing. (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanga authored Jan 7, 2019
1 parent ed3a220 commit 648fd13
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- "3.4"
- "3.5"
install:
- pip install -U pip setuptools
- pip install -q -r requirements.pip
env:
- "RUNTESTS=nosetests"
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Pyxform Changelog

v0.12.2, 2019 01 06
-- Correct environment marker in requirements.pip
[ukanga]

v0.12.1, 2019 01 06
-- Performance Regression fix on using relative paths.
Issue #247, https://github.com/XLSForm/pyxform/issues/247
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install:

# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- ps: python -m pip install -U pip
- ps: python -m pip install -U pip setuptools

# We need wheel installed to build wheels
- ps: pip install wheel
Expand Down
2 changes: 1 addition & 1 deletion pyxform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Collect easy.
"""

__version__ = '0.12.1'
__version__ = '0.12.2'

from pyxform.builder import (SurveyElementBuilder, create_survey, # noqa
create_survey_element_from_dict,
Expand Down
2 changes: 1 addition & 1 deletion requirements.pip
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ traceback2==1.4.0 # via unittest2
unicodecsv==0.14.1
unittest2==1.1.0
xlrd==1.1.0
functools32==3.2.3.post2;python_version<"3.2"
functools32==3.2.3.post2 ; python_version < "3.2"
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
# -*- coding: utf-8 -*-
"""Pyxform - Python library that converts XLSForms to XForms.
"""
import sys

from setuptools import find_packages, setup

REQUIRES = [
'xlrd>=1.1.0',
'unicodecsv>=0.14.1',
'formencode',
'unittest2',
'functools32==3.2.3.post2 ; python_version < "3.2"',
]

if sys.version_info < (3, 2):
REQUIRES.append('functools32==3.2.3.post2')

setup(
name='pyxform',
version='0.12.1',
version='0.12.2',
author='github.com/xlsform',
author_email='info@xlsform.org',
packages=find_packages(),
Expand Down

0 comments on commit 648fd13

Please sign in to comment.