Skip to content

Commit

Permalink
Make the python scrip run over all the repos again
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Nov 27, 2024
1 parent 38c5478 commit 27896a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions etc/update-contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def write_line_break(self, data=None):
with open(infile, "r") as ymlfile:
peopleList = yaml.safe_load(ymlfile)
names = [i['github'] for i in peopleList]
repoList = ["thofma/Hecke.jl"]#, "oscar-system/Oscar.jl", "Nemocas/Nemo.jl",
#"Nemocas/AbstractAlgebra.jl", "oscar-system/GAP.jl", "oscar-system/Polymake.jl",
#"oscar-system/Singular.jl"]
repoList = ["thofma/Hecke.jl", "oscar-system/Oscar.jl", "Nemocas/Nemo.jl",
"Nemocas/AbstractAlgebra.jl", "oscar-system/GAP.jl", "oscar-system/Polymake.jl",
"oscar-system/Singular.jl"]

newList = []
namelist = []
Expand All @@ -33,7 +33,7 @@ def write_line_break(self, data=None):
API_KEY = os.getenv("API_KEY") # TODO: rename to whatever is the right env var
summarystring = "This PR updates the contributors list based on the latest changes.\n"
# grab currently active devs
if not os.path.isdir("repos"): #bla a a
if not os.path.isdir("repos"):
os.mkdir("repos")
os.chdir("repos")
for repo in repoList:
Expand Down

0 comments on commit 27896a6

Please sign in to comment.