Skip to content

Commit

Permalink
Merge pull request #617 from ReactiveX/fix-publish-version-2
Browse files Browse the repository at this point in the history
Fix poetry version setting
  • Loading branch information
dbrattli committed Mar 5, 2022
2 parents 35409d2 + 0abaedd commit 7211831
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python-publish.yml
Expand Up @@ -20,10 +20,9 @@ jobs:
with:
python-version: '3.9'

- name: Install dependencies
- name: Install dependencies and set version
run: |
pip install poetry
poetry install
pip install poetry dunamai
poetry version $(dunamai from any --no-metadata --style pep440)
- name: Build package
Expand Down
12 changes: 9 additions & 3 deletions docs/installation.rst
@@ -1,16 +1,22 @@
.. Installation
Installation
=============
============

ReactiveX for Python v4.x runs on `Python <http://www.python.org/>`__ 3. To install:

.. code:: console
pip3 install reactivex
RxPY v3.x runs on `Python <http://www.python.org/>`__ 3. To install RxPY:

.. code:: python
.. code:: console
pip3 install rx
For Python 2.x you need to use version 1.6

.. code:: python
.. code:: console
pip install rx==1.6.1

0 comments on commit 7211831

Please sign in to comment.