Skip to content

Commit

Permalink
Update script
Browse files Browse the repository at this point in the history
  • Loading branch information
Athanaseus committed Apr 22, 2024
1 parent 3653545 commit 475a2c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from gzip import GzipFile


def gather_data(version="8", dist="focal"):
def gather_data(version="9", dist="focal"):
sources = f"http://ppa.launchpad.net/kernsuite/kern-{version}/ubuntu/dists/{dist}/main/source/Sources.gz"
packages = f"http://ppa.launchpad.net/kernsuite/kern-{version}/ubuntu/dists/{dist}/main/binary-amd64/Packages.gz"

Expand Down Expand Up @@ -72,7 +72,7 @@ def print_list(source_packages):


if __name__ == "__main__":
source_packages_9 = gather_data(version=8, dist="jammy")
source_packages_9 = gather_data(version=9, dist="jammy")
source_packages_8 = gather_data(version=8, dist="focal")
source_packages_7 = gather_data(version=7, dist="focal")
source_packages_6 = gather_data(version=6, dist="bionic")
Expand Down

0 comments on commit 475a2c6

Please sign in to comment.