Skip to content

Commit

Permalink
Merge pull request #3 from dwhswenson/fix-2023-08
Browse files Browse the repository at this point in the history
Looks like they removed a column from the Anaconda files table
  • Loading branch information
dwhswenson committed Aug 7, 2023
2 parents 3ca48b4 + c1233fa commit f40b786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_conda_for_rc.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def parse_file_row(tr):
date = dateutil.parser.parse(string_date)
a = list(tds[3].find_all('a'))[1]
version = packaging.version.Version(a['href'].split('/')[3])
conda_tag = tds[7].a.string.strip()
conda_tag = tds[6].a.string.strip()
return version, date, conda_tag

def get_page(package, num):
Expand Down

0 comments on commit f40b786

Please sign in to comment.