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

Move requirements out to a separate 'requirements.txt' file. #2090

Merged
merged 1 commit into from
Aug 11, 2016
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ install:
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
- "%CMD_IN_ENV% pip install wheel nose nose-exclude cryptography"
# Install sometimes-problematic gRPC-related dependencies
- "%CMD_IN_ENV% pip install 'grpcio >= 1.0rc1' gax-google-pubsub-v1 gax-google-logging-v2"
- "%CMD_IN_ENV% pip install -r appveyor/requirements.txt"

build_script:
# Build the compiled extension
Expand Down
13 changes: 13 additions & 0 deletions appveyor/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Install the build dependencies of the project. If some dependencies contain
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
wheel
nose
nose-exclude
cryptography
grpcio >= 1.0rc1
grpc-google-pubsub-v1
grpc-google-logging-v2
gax-google-pubsub-v1
gax-google-logging-v2