We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cbe13e commit 4a03d71Copy full SHA for 4a03d71
2 files changed
ROLLING.md
@@ -5,10 +5,12 @@
5
* create virtual environment, if don't have one: `python -m venv env`
6
* activate venv: `source env/bin/activate`
7
* install all deps:
8
- - `python -m pip install --upgrade pip`
9
- - `pip install -r local-requirements.txt`
10
- - `pre-commit install`
11
- - `pip install -e .`
+```
+python -m pip install --upgrade pip
+pip install -r local-requirements.txt
+pre-commit install
12
+pip install -e .
13
14
* change driver version in `setup.py`
15
* download new driver: `python -m build --wheel`
16
* generate API: `./scripts/update_api.sh`
setup.py
@@ -21,7 +21,7 @@
21
import zipfile
22
from typing import Dict
23
24
-driver_version = "1.55.0"
+driver_version = "1.55.0-beta-1756314050000"
25
26
base_wheel_bundles = [
27
{
0 commit comments