Skip to content

Commit b8c673b

Browse files
author
Sylvain MARIE
committed
1.11.1 - Added six dependency explicitly
It was missing from `setup.py`.
1 parent 278bcf6 commit b8c673b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ci_tools/requirements-pip.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# --- to execute setup.py whatever the goal
2+
six
23
pytest-runner
34
setuptools_scm
45
pypandoc

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 1.11.1 - Added `six` dependency explicitly
4+
5+
It was missing from `setup.py`.
6+
37
### 1.11.0 - `fixture_ref` can now be used inside tuples, leading to cross-products
48

59
Fixes [#47](https://github.com/smarie/python-pytest-cases/issues/47).

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
# *************** Dependencies *********
1414
INSTALL_REQUIRES = ['wrapt', 'decopatch', 'makefun', 'functools32;python_version<"3.2"',
15-
'funcsigs;python_version<"3.3"', 'enum34;python_version<"3.4"']
15+
'funcsigs;python_version<"3.3"', 'enum34;python_version<"3.4"', 'six']
1616
DEPENDENCY_LINKS = []
17-
SETUP_REQUIRES = ['pytest-runner', 'setuptools_scm', 'pypandoc', 'pandoc']
17+
SETUP_REQUIRES = ['pytest-runner', 'setuptools_scm', 'pypandoc', 'pandoc', 'six']
1818
TESTS_REQUIRE = ['pytest', 'pytest-logging', 'pytest-cov', 'pytest-steps', 'pytest-harvest']
1919
EXTRAS_REQUIRE = {}
2020

0 commit comments

Comments
 (0)