-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.7.0 as seen on pypi (#1284)
- Loading branch information
Showing
13 changed files
with
39 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
cp gpkit/env/settings . | ||
sed -i '1s/.*/installed_solvers : mosek_cli/' gpkit/env/settings | ||
cat gpkit/env/settings | ||
python3 -c docs/source/examples/simpleflight.py | ||
python3 docs/source/examples/simpleflight.py | ||
mv settings gpkit/env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
|
||
LICENSE = """The MIT License (MIT) | ||
Copyright (c) 2017 Edward Burnell and Warren Hoburg | ||
Copyright (c) 2018 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 | ||
|
@@ -49,11 +49,11 @@ | |
name="gpkit", | ||
description="Package for defining and manipulating geometric " | ||
"programming models.", | ||
author="Edward Burnell and Warren Hoburg", | ||
author="Edward Burnell", | ||
author_email="[email protected]", | ||
url="https://www.github.com/convexengineering/gpkit", | ||
install_requires=["numpy >= 1.12.1", "pint >= 0.7", "scipy"], | ||
version="0.6.0.0", | ||
version="0.7.0.0", | ||
packages=["gpkit", "gpkit.tools", "gpkit.interactive", "gpkit.constraints", | ||
"gpkit.nomials", "gpkit.tests", "gpkit._mosek", "gpkit._pint"], | ||
package_data={"gpkit": ["env/*"], | ||
|