Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to build on Ubuntu Noble / Python 3.8 #70

Merged
merged 2 commits into from
Aug 14, 2024
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
5 changes: 4 additions & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

export DH_OPTIONS

ifeq ($(shell (. /etc/lsb-release && dpkg --compare-versions $$DISTRIB_RELEASE ge "22.04" && echo yes || echo no)),yes)
ifeq ($(shell (. /etc/lsb-release && dpkg --compare-versions $$DISTRIB_RELEASE ge "24.04" && echo yes || echo no)),yes)
python3_depends = python3.8, python3.8-distutils
python3_runtime = python3.8
else ifeq ($(shell (. /etc/lsb-release && dpkg --compare-versions $$DISTRIB_RELEASE ge "22.04" && echo yes || echo no)),yes)
python3_depends = python3.7, python3.7-distutils
python3_runtime = python3.7
else
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
backports.ssl-match-hostname==3.5.0.1
callee==0.3.1
certifi==2018.1.18
chardet==3.0.4
certifi==2024.7.4
chardet==5.1.0
docker==5.0.3
docker-pycreds==0.2.2
future==0.16.0
idna==2.6
ipaddress==1.0.19
python-dateutil==2.6.1
python-dateutil==2.9.0
pytimeparse==1.1.8
requests==2.20.0
requests==2.31.0
setuptools==68.0.0
six==1.11.0
urllib3==1.24.2
websocket-client==0.57.0
Loading