Skip to content

Commit 7211831

Browse files
authored
Merge pull request #617 from ReactiveX/fix-publish-version-2
Fix poetry version setting
2 parents 35409d2 + 0abaedd commit 7211831

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

Diff for: .github/workflows/python-publish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
with:
2121
python-version: '3.9'
2222

23-
- name: Install dependencies
23+
- name: Install dependencies and set version
2424
run: |
25-
pip install poetry
26-
poetry install
25+
pip install poetry dunamai
2726
poetry version $(dunamai from any --no-metadata --style pep440)
2827
2928
- name: Build package

Diff for: docs/installation.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
.. Installation
22
33
Installation
4-
=============
4+
============
5+
6+
ReactiveX for Python v4.x runs on `Python <http://www.python.org/>`__ 3. To install:
7+
8+
.. code:: console
9+
10+
pip3 install reactivex
511
612
RxPY v3.x runs on `Python <http://www.python.org/>`__ 3. To install RxPY:
713

8-
.. code:: python
14+
.. code:: console
915
1016
pip3 install rx
1117
1218
For Python 2.x you need to use version 1.6
1319

14-
.. code:: python
20+
.. code:: console
1521
1622
pip install rx==1.6.1

0 commit comments

Comments
 (0)