Skip to content

Commit

Permalink
Merge pull request #165 from stanfordmlgroup/update-setup-py-3
Browse files Browse the repository at this point in the history
Update setup py 3
  • Loading branch information
ryan-wolbeck authored Aug 7, 2020
2 parents 1e37703 + cbcb1b2 commit 3c4ff30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ngboost/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.3dev"
__version__ = "0.2.4dev"
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import os
import setuptools
import sys


assert sys.version_info >= (3, 6, 0), "NGBoost requires Python 3.6+"


def get_version() -> str:
Expand Down Expand Up @@ -27,6 +31,7 @@ def get_long_description():
long_description_content_type="text/markdown",
url="https://github.com/stanfordmlgroup/ngboost",
license="Apache License 2.0",
python_requires=">=3.6",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 3c4ff30

Please sign in to comment.