Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
'3.13',
]
certbot-version: [
'2.7.0',
'2.11.1',
'3.3.0',
'4.2.0',
]
Expand All @@ -36,11 +36,7 @@ jobs:
- name: Install
run: |
sudo apt-get install -y dnsutils
if [[ $CERTBOT_VERSION != "latest" ]]
then
pip3 install certbot~=$CERTBOT_VERSION
fi
pip3 install .
pip3 install certbot~=$CERTBOT_VERSION .
pip3 freeze
env:
CERTBOT_VERSION: ${{ matrix.certbot-version }}
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
'3.13',
]
certbot-version: [
'2.7.0',
'2.11.1',
'3.3.0',
'4.2.0',
]
Expand All @@ -35,11 +35,7 @@ jobs:
- name: Install Requirements
run: |
pip3 install -r requirements.txt
if [[ $CERTBOT_VERSION != "latest" ]]
then
pip3 install certbot~=$CERTBOT_VERSION
fi
pip3 install .
pip3 install certbot~=$CERTBOT_VERSION .
pip3 freeze
env:
CERTBOT_VERSION: ${{ matrix.certbot-version }}
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from setuptools import setup
from setuptools import find_packages

version = "1.3.1"
version = "1.3.2"

install_requires = [
"certbot>=2.7.0",
"certbot",
"dnspython",
"josepy<2",
"setuptools",
"requests",
]
Expand Down