File tree 2 files changed +18
-6
lines changed
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
News
2
2
====
3
+ 0.5.0
4
+ -----
5
+ *Release date: 31-Oct-2023
6
+
7
+ * Drop python 2.x compatibility (should still work)
8
+ * Move to use pytest
9
+ * Support urllib3 v2, including support of self-signed certs
10
+ * Fix version check to avoid crashes with non-official releases
11
+ * Correctly handle watch timeouts in lock
12
+ * Allow trying more than one domain when looking up SRV records
13
+ * Support auth API both <= 2.2.5 and >= 2.3.0
14
+ * Use github actions instead than travis
15
+
3
16
0.4.5
4
17
-----
5
18
*Release date: 3-Mar-2017*
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ From source
27
27
.. code :: bash
28
28
29
29
$ python setup.py install
30
-
30
+
31
31
From Pypi
32
32
~~~~~~~~~
33
33
34
34
.. code :: bash
35
35
36
- $ python3.5 -m pip install python-etcd
36
+ $ python -m pip install python-etcd
37
37
38
38
Usage
39
39
-----
@@ -209,18 +209,17 @@ List contents of a directory
209
209
Development setup
210
210
-----------------
211
211
212
- To create a buildout ,
212
+ To check your code ,
213
213
214
214
.. code :: bash
215
215
216
- $ python bootstrap.py
217
- $ bin/buildout
216
+ $ tox
218
217
219
218
to test you should have etcd available in your system path:
220
219
221
220
.. code :: bash
222
221
223
- $ bin/test
222
+ $ command -v etcd
224
223
225
224
to generate documentation,
226
225
You can’t perform that action at this time.
0 commit comments