diff --git a/.gitignore b/.gitignore index c34c35111..59efb67ac 100644 --- a/.gitignore +++ b/.gitignore @@ -42,9 +42,6 @@ htmlcov/ .cache nosetests.xml coverage.xml -gpkit/docs/source/examples/*.csv -docs/source/examples/*.mat -docs/source/examples/*.pkl # Translations *.mo diff --git a/docs/source/conf.py b/docs/source/conf.py index d4409176d..52cce0b90 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,16 +48,16 @@ # General information about the project. project = u'gpkit' -copyright = u'2019 Edward Burnell' +copyright = u'2020 Edward Burnell' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.9' +version = '0.9.9' # The full version, including alpha/beta/rc tags. -release = '0.9.1' +release = '0.9.9' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gpkit/__init__.py b/gpkit/__init__.py index 80de48ec6..7ecc5815d 100644 --- a/gpkit/__init__.py +++ b/gpkit/__init__.py @@ -1,6 +1,6 @@ "GP and SP modeling package" from __future__ import unicode_literals, print_function -__version__ = "0.9.1" +__version__ = "0.9.9" from .build import build from ._pint import units, ureg, DimensionalityError diff --git a/setup.py b/setup.py index 148942ca4..77e8b61fd 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ LICENSE = """The MIT License (MIT) -Copyright (c) 2019 Edward Burnell +Copyright (c) 2020 Edward Burnell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54,7 +54,7 @@ url="https://www.github.com/convexengineering/gpkit", install_requires=["numpy >= 1.13.3", "pint >= 0.8.1", "scipy", "ad", "cvxopt >= 1.1.8", "six"], - version="0.9.1.0", + version="0.9.9.0", packages=["gpkit", "gpkit.tools", "gpkit.interactive", "gpkit.constraints", "gpkit.nomials", "gpkit.tests", "gpkit._mosek", "gpkit._pint"], package_data={"gpkit": ["env/settings"],