8000 docs: add supported language versions to README by childish-sambino · Pull Request #499 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: add supported language versions to README
  • Loading branch information
Sam Harrison committed Nov 26, 2019
commit 328b29ca5a7cc37c6f74331740d1ba03725ddb88
34 changes: 15 additions & 19 deletions README.md
8000
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,24 @@ The documentation for the Twilio API can be found [here][apidocs].

The Python library documentation can be found [here][libdocs].

## Recent Update
## Versions

`twilio-python` uses a modified version of [Semantic Versioning](https://semver.org) for all changes. [See this document](VERSIONS.md) for details.

As of release 6.5.0, Beta and Developer Preview products are now exposed via
the main `twilio-python` artifact. Releases of the `alpha` branch have been
discontinued.
### Migrating from 5.x

If you were using the `alpha` release line, you should be able to switch back
to the normal release line without issue.
Please consult the [official migration guide](https://www.twilio.com/docs/libraries/python/migration-guide) for information on upgrading your application using twilio-python 5.x to 6.x

If you were using the normal release line, you should now see several new
product lines that were historically hidden from you due to their Beta or
Developer Preview status. Such products are explicitly documented as
Beta/Developer Preview both in the Twilio docs and console, as well as through
in-line code documentation here in the library.
### Supported Python Versions

This library supports the following Python implementations:

* Python 2.7
* Python 3.4
* Python 3.5
* Python 3.6
* Python 3.7
* Python 3.8

## Installation

Expand All @@ -46,14 +50,6 @@ source code") for `twilio-python`, and then run:

You may need to run the above commands with `sudo`.

## Versions

`twilio-python` uses a modified version of [Semantic Versioning](https://semver.org) for all changes. [See this document](VERSIONS.md) for details.

### Migrate from 5.x

Please consult the [official migration guide](https://www.twilio.com/docs/libraries/python/migration-guide) for information on upgrading your application using twilio-python 5.x to 6.x

## Getting Started

Getting started with the Twilio API couldn't be easier. Create a
Expand Down
0