You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This walkthrough documents the process to create and upload the btrdb package to Anaconda Cloud. At a high level, this will guide you through the following steps:
5
5
6
-
1. Activate your local environment and install dependenciess
6
+
1. Activate your local environment and install dependencies
7
7
2. Create and edit the `meta.yaml` file
8
8
3. Create local system builds for 3.6 and 3.7
9
9
4. Create builds for other platforms using conda's conversion command
@@ -117,27 +117,6 @@ This will create a `btrdb` subfolder containing the `meta.yaml` file we need. A
117
117
$ cd ../
118
118
$ rm -rf conda.recipe/
119
119
120
-
Modify the requirements file
121
-
-----------------------------
122
-
123
-
At this time, the codebase has pinned the grpc dependencies at `1.12.1` which needs to be modified by hand as that version doesnt exist in Anaconda. A diff is provided below so you can edit or patch the file.
124
-
125
-
.. code-block:: diff
126
-
127
-
diff --git a/requirements.txt b/requirements.txt
128
-
index f504f26..403b1d4 100644
129
-
--- a/requirements.txt
130
-
+++ b/requirements.txt
131
-
@@ -1,6 +1,6 @@
132
-
# GRPC / Protobuff related
133
-
-grpcio==1.12.1
134
-
-grpcio-tools==1.12.1
135
-
+grpcio==1.16.1
136
-
+grpcio-tools==1.16.1
137
-
138
-
# Time related utils
139
-
pytz
140
-
141
120
142
121
Modify the meta.yaml file
143
122
--------------------------
@@ -169,19 +148,11 @@ You may wish to update the build number as well. A patch is supplied below to g
0 commit comments