Skip to content

Commit d46c6f7

Browse files
master -> main
1 parent 27792a6 commit d46c6f7

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Test
22
on:
33
# Trigger the workflow on push or pull request,
4-
# but only for the master branch
4+
# but only for the main branch
55
push:
66
branches:
7-
- master
7+
- main
88
pull_request:
99
branches:
10-
- master
10+
- main
1111

1212
jobs:
1313
pytest:

Contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you encounter any bugs while using this software, or want to request a new fe
1616

1717
Pull requests are welcome for bug fixes. If you want to implement something new, [please request a feature](https://github.com/nylas/nylas-python/issues) first so we can discuss it.
1818

19-
While writing your code contribution, make sure you follow the testing conventions found in the [tests directory](https://github.com/nylas/nylas-python/tree/master/tests) for any components that you add. We use [codecov](https://codecov.io/gh/nylas/nylas-python) to test coverage, please ensure that your contributions don’t cause a decrease to test coverage.
19+
While writing your code contribution, make sure you follow the testing conventions found in the [tests directory](https://github.com/nylas/nylas-python/tree/main/tests) for any components that you add. We use [codecov](https://codecov.io/gh/nylas/nylas-python) to test coverage, please ensure that your contributions don’t cause a decrease to test coverage.
2020

2121
## Creating a Pull Request
2222

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Nylas Python SDK [![Build Status](https://travis-ci.org/nylas/nylas-python.svg?branch=master)](https://travis-ci.org/nylas/nylas-python) [![Code Coverage](https://codecov.io/gh/nylas/nylas-python/branch/master/graph/badge.svg)](https://codecov.io/gh/nylas/nylas-python)
2-
1+
# Nylas Python SDK ![Build Status](https://github.com/nylas/nylas-python/workflows/Test/badge.svg) [![Code Coverage](https://codecov.io/gh/nylas/nylas-python/branch/main/graph/badge.svg)](https://codecov.io/gh/nylas/nylas-python)
32

43
This is the GitHub repository for the Nylas Python SDK and this repo is primarily for anyone who wants to make contributions to the SDK or install it from source. If you are looking to use Python to access the Nylas Email, Calendar, or Contacts API you should refer to our official [Python SDK Quickstart Guide](https://docs.nylas.com/docs/quickstart-python).
54

@@ -35,7 +34,7 @@ Next, in your python script, import the `APIClient` class from the `nylas` packa
3534

3635

3736
from nylas import APIClient
38-
37+
3938
nylas = APIClient(
4039
CLIENT_ID,
4140
CLIENT_SECRET,
@@ -56,4 +55,4 @@ Please refer to [Contributing](Contributing.md) for information about how to mak
5655

5756
# License
5857

59-
This project is licensed under the terms of the MIT license. Please refer to [LICENSE](LICENSE) for the full terms.
58+
This project is licensed under the terms of the MIT license. Please refer to [LICENSE](LICENSE) for the full terms.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ def main():
8787
long_description_content_type="text/markdown",
8888
long_description="""
8989
# Nylas REST API Python bindings
90-
[![Build Status](https://travis-ci.org/nylas/nylas-python.svg?branch=master)](https://travis-ci.org/nylas/nylas-python)
91-
[![Code Coverage](https://codecov.io/gh/nylas/nylas-python/branch/master/graph/badge.svg)](https://codecov.io/gh/nylas/nylas-python)
90+
![Build Status](https://github.com/nylas/nylas-python/workflows/Test/badge.svg)
91+
[![Code Coverage](https://codecov.io/gh/nylas/nylas-python/branch/main/graph/badge.svg)](https://codecov.io/gh/nylas/nylas-python)
9292
9393
Python bindings for the Nylas REST API. https://www.nylas.com/docs
9494

0 commit comments

Comments
 (0)