Skip to content

Commit 341a537

Browse files
committed
Deprecate python 2
1 parent 7dd3ba0 commit 341a537

File tree

6 files changed

+138
-100
lines changed

6 files changed

+138
-100
lines changed

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Simple way to get SSL certificates for free.
1616

1717
## Features
1818

19-
* Supports both Python 2 (deprecated) and Python 3
2019
* Works with both ACMEv1 (deprecated) and ACMEv2 protocols
2120
* Can issue [wildcard certificates](https://en.wikipedia.org/wiki/Wildcard_certificate)!
2221
* Easy to use and extend
@@ -42,7 +41,7 @@ You can specify as many alternative domain names as you wish.
4241
The result PEM file is a **certificate chain** containing your signed
4342
certificate and letsencrypt signed chain. You can use it with nginx.
4443

45-
Should work with Python >= 2.6
44+
Should work with Python >= 3.6
4645

4746
## ACME v2
4847

@@ -82,10 +81,6 @@ Only HTTP challenge is supported at the moment.
8281

8382
## Installation
8483

85-
Python 2 installation may require compilation of dependencies that
86-
may take much time and CPU resources and may require you to install all build
87-
dependencies.
88-
8984
### Preferred way
9085

9186
Using [poetry](https://python-poetry.org/).
@@ -114,7 +109,7 @@ Using [poetry](https://python-poetry.org/).
114109

115110
Automatically
116111
```
117-
pip install acme-nginx
112+
pip3 install acme-nginx
118113
```
119114

120115
or manually

acme_nginx/Acme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from urllib2 import urlopen, Request # Python 2
1818

1919

20-
__version__ = "0.3.1"
20+
__version__ = "0.3.2"
2121

2222

2323
class Acme(object):

0 commit comments

Comments
 (0)