Skip to content

Commit

Permalink
Deprecate python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kshcherban committed Apr 28, 2022
1 parent 7dd3ba0 commit 341a537
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 100 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Simple way to get SSL certificates for free.

## Features

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

Should work with Python >= 2.6
Should work with Python >= 3.6

## ACME v2

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

## Installation

Python 2 installation may require compilation of dependencies that
may take much time and CPU resources and may require you to install all build
dependencies.

### Preferred way

Using [poetry](https://python-poetry.org/).
Expand Down Expand Up @@ -114,7 +109,7 @@ Using [poetry](https://python-poetry.org/).

Automatically
```
pip install acme-nginx
pip3 install acme-nginx
```

or manually
Expand Down
2 changes: 1 addition & 1 deletion acme_nginx/Acme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from urllib2 import urlopen, Request # Python 2


__version__ = "0.3.1"
__version__ = "0.3.2"


class Acme(object):
Expand Down
Loading

0 comments on commit 341a537

Please sign in to comment.