Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve Python 3.4 Build Issues on Appveyor #438

Merged
merged 4 commits into from
Apr 24, 2018
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 3 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ install:
#
# Update conda, then force it to NOT update itself again
#
# Somehow, the update stalls for Python 3.4, so we're disabling it for now.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment doesn't seem to match the remark below: you are not disabling the update, just removing the explicit tie to the Anaconda channel. Either we should remove line 77 below, or correct this comment.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

#
- conda config --set always_yes yes
- conda update -q -y -c anaconda conda
- conda update -q -y conda
- conda config --set auto_update_conda false
#
- "%CONDAFORGE% setuptools pip"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Pyomo CHANGELOG
Current Development
-------------------------------------------------------------------------------

- Resolved Python 3.4 build errors on Appveyor.
- Wrap Vars in value() for assignment to numpy vectors (#436)
- Adding TerminationCondition and SolverStatus to pyomo.environ (#429)

Expand Down