Skip to content

Commit

Permalink
setup.py: support Fedora 32
Browse files Browse the repository at this point in the history
After the previous patches, OSv now correctly builds on Fedora 32.
So support Fedora 32 in setup.py. The same packages needed in previous Fedora
releases are also needed in Fedora 32.

Signed-off-by: Nadav Har'El <[email protected]>
  • Loading branch information
nyh committed May 23, 2020
1 parent f50218f commit 91de2b9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,14 @@ class Fedora_31(object):
ec2_post_install = None
version = '31'

versions = [Fedora_25, Fedora_26, Fedora_27, Fedora_28, Fedora_29, Fedora_30, Fedora_31]
class Fedora_32(object):
packages = []
ec2_packages = []
test_packages = []
ec2_post_install = None
version = '32'

versions = [Fedora_25, Fedora_26, Fedora_27, Fedora_28, Fedora_29, Fedora_30, Fedora_31, Fedora_32]

class RHELbased(Fedora):
name = ['Scientific Linux', 'NauLinux', 'CentOS Linux', 'Red Hat Enterprise Linux', 'Oracle Linux']
Expand Down

0 comments on commit 91de2b9

Please sign in to comment.