Skip to content

Commit

Permalink
Add support to build on Ubuntu Noble / Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vulpine committed Aug 13, 2024
1 parent 1914c1b commit 6000db3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
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.32.3
setuptools==70.1.1
six==1.11.0
urllib3==1.24.2
websocket-client==0.57.0

0 comments on commit 6000db3

Please sign in to comment.