Skip to content

Commit

Permalink
NDA-5080 - create .NDATools/settings.cfg on initialization of Configu…
Browse files Browse the repository at this point in the history
…ration class

* Updated release version
  • Loading branch information
David Obenshain committed Jul 16, 2019
1 parent 2e3dd38 commit 6473cf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NDATools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json
import sys

__version__ = '0.1.27'
__version__ = '0.1.20'
pypi_version = None
version_checked = False

Expand All @@ -13,7 +13,7 @@ def check_version():
except ImportError:
from pip._vendor.packaging.version import parse
# use https://test.pypi.org/pypi/{package}/json on test/release branches, use https://pypi.org on master
url_pattern = 'https://test.pypi.org/pypi/{package}/json'
url_pattern = 'https://pypi.org/pypi/{package}/json'
package = 'nda-tools'
"""Return version of package on pypi.python.org using json."""
req = requests.get(url_pattern.format(package=package))
Expand Down

0 comments on commit 6473cf8

Please sign in to comment.