Skip to content

Commit

Permalink
Merge pull request #49 from openx/fix-versions
Browse files Browse the repository at this point in the history
Fix six nad mock version
  • Loading branch information
ikari-pl authored Sep 28, 2021
2 parents 3de942e + d80860c commit 6621c32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ox3apiclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import requests
from requests_oauthlib import OAuth1

__version__ = '0.6.2'
__version__ = '0.6.3'

REQUEST_TOKEN_URL = 'https://sso.openx.com/api/index/initiate'
ACCESS_TOKEN_URL = 'https://sso.openx.com/api/index/token'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read_file(name):
long_description_content_type="text/markdown",
packages=find_packages(),
zip_safe=True,
install_requires=['six==2.26.0', 'requests_oauthlib==1.3.0'],
install_requires=['six==1.16.0', 'requests_oauthlib==1.3.0'],
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
Expand All @@ -45,6 +45,6 @@ def read_file(name):
test_suite='nose.collector',
tests_require=[
'nose==1.3.7',
'mock; python_version < "3.3"'
'mock==2.0.0; python_version < "3.3"'
]
)

0 comments on commit 6621c32

Please sign in to comment.