equal
deleted
inserted
replaced
85 |
85 |
86 version = line.split()[2][1:-1] |
86 version = line.split()[2][1:-1] |
87 break |
87 break |
88 |
88 |
89 if not version: |
89 if not version: |
90 raise Exception("could not resolve package version; " "this should never happen") |
90 raise Exception( |
|
91 "could not resolve package version; " "this should never happen" |
|
92 ) |
91 |
93 |
92 setup( |
94 setup( |
93 name="zstandard", |
95 name="zstandard", |
94 version=version, |
96 version=version, |
95 description="Zstandard bindings for Python", |
97 description="Zstandard bindings for Python", |