Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion atlasapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# __init__.py

# Version of the realpython-reader package
__version__ = "2.0.1"
__version__ = "2.0.2"
2 changes: 1 addition & 1 deletion atlasapi/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Settings:
# Atlas APIs
BASE_URL = getenv('BASE_URL', 'https://cloud.mongodb.com')
URI_STUB = '/api/atlas/v1.0'
URI_STUB = getenv('URI_STUB', '/api/atlas/v1.0'))

api_resources = {
"Project": {
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
from setuptools import find_packages, setup

setup(
name='atlasapi',
version='2.0.1',
version='2.0.2',
python_requires='>=3.7',
packages=find_packages(exclude=("tests",)),
install_requires=['requests', 'python-dateutil', 'isodate', 'future', 'pytz','coolname', 'humanfriendly', 'nose'],
Expand Down