Skip to content

Commit

Permalink
Fix: qe_behave extras keys - lowercase.
Browse files Browse the repository at this point in the history
To work around this bug:
pypa/pip#4617

Hat tip to Brad Brown for finding this.
Uppercase worked when I was testing the package locally... sigh.
  • Loading branch information
dougPhilips committed May 22, 2018
1 parent f886c29 commit 851c9fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion qe_behave/qe_behave/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (1, 0, 1)
VERSION = (1, 0, 2)

__version__ = '.'.join(map(str, VERSION))
4 changes: 2 additions & 2 deletions qe_behave/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
]

EXTRAS_REQUIRE = {
'API': ['requests~=2.18.4'],
'UI': ['selenium~=3.12.0'],
'api': ['requests~=2.18.4'],
'ui': ['selenium~=3.12.0'],
}


Expand Down

0 comments on commit 851c9fb

Please sign in to comment.