Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 9 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,18 @@ For more details see the `Amadeus for Developers Portal
Installation
------------

This SDK requires Python 2.7+ or 3.3+. You can install install it
directly with pip.
This SDK requires Python 2.7+ or 3.3+. You can install it directly with pip.

.. code:: sh

pip install amadeus==1.0.0b8
pip install amadeus

You can also add it to your `requirements.txt` file and install using:

.. code:: sh

pip install -r requirements.txt


Getting Started
---------------
Expand Down
2 changes: 1 addition & 1 deletion amadeus/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 0, '0b8')
version_info = (1, 0, 0)
version = '.'.join(str(v) for v in version_info)