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
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,19 @@ Once installed run `poetry install` to install the required dependencies. This s
137
137
138
138
#### Makefile
139
139
140
-
Our Makefile has the common operations needed when developing on this repo. Running tests and linting can both be run through our Makefile. Just run `make help` to see the list of available commands.
140
+
Our Makefile has the common operations needed when developing on this repo. Running tests and linting can both be
141
+
run through our Makefile. Just run `make help` to see the list of available commands.
142
+
143
+
If you're using `pyenv` to manage active Python versions then you might need to launch a Poetry shell before running
144
+
Make commands in order to actually use your chosen Python version. This is because Poetry uses the system Python version
145
+
by default.
146
+
147
+
```shell
148
+
poetry shell # start shell
149
+
poetry install # install deps
150
+
151
+
make test# run your make commands
152
+
```
141
153
142
154
## Release planning
143
155
This client will attempt to follow the release cadence of our API.
0 commit comments