File tree Expand file tree Collapse file tree 4 files changed +17
-8
lines changed
Expand file tree Collapse file tree 4 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
22commit = True
33tag = True
4- current_version = 6.12 .0
4+ current_version = 6.13 .0
55
66[bumpversion:file:nylas/_client_sdk_version.py]
Original file line number Diff line number Diff line change 11nylas-python Changelog
22======================
33
4- Unreleased
4+ v6.13.0
55----------
66* Fixed from field handling in messages.send() to properly map "from_ " field to "from field
77* Fixed content_id handling for large inline attachments to use content_id as field name instead of generic file{index}
Original file line number Diff line number Diff line change @@ -42,26 +42,35 @@ source .venv/bin/activate
4242# .venv\Scripts\activate
4343```
4444
45+ ** Important** : If you encounter issues with ` pip ` not being available in the virtual environment, run:
46+
47+ ``` bash
48+ # Ensure pip is available in the virtual environment
49+ python -m ensurepip --upgrade
50+ ```
51+
4552### 3. Install Development Dependencies
4653
4754Install the package in editable mode with all optional dependencies:
4855
4956``` bash
5057# Install the package in development mode with all optional dependencies
51- pip install -e " .[test,docs,release]"
58+ python -m pip install -e " .[test,docs,release]"
5259
5360# Or install specific dependency groups as needed:
54- # pip install -e ".[test]" # For running tests
55- # pip install -e ".[docs]" # For building documentation
56- # pip install -e ".[release]" # For release management
61+ # python -m pip install -e ".[test]" # For running tests
62+ # python -m pip install -e ".[docs]" # For building documentation
63+ # python -m pip install -e ".[release]" # For release management
5764```
5865
66+ ** Note** : We use ` python -m pip ` instead of just ` pip ` to ensure we're using the pip from the virtual environment.
67+
5968### 4. Install Code Quality Tools
6069
6170Install the linting and formatting tools used by the project:
6271
6372``` bash
64- pip install pylint black
73+ python -m pip install pylint black
6574```
6675
6776### 5. Verify Your Setup
Original file line number Diff line number Diff line change 1- __VERSION__ = "6.12 .0"
1+ __VERSION__ = "6.13 .0"
You can’t perform that action at this time.
0 commit comments