Skip to content

Commit

Permalink
Bump python version, new github repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrannicodin committed Aug 1, 2024
1 parent 68d68b5 commit 3e8d492
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# run: conda env create --file environment.yml
name: hc-tcg-bot
dependencies:
- python>=3.10
- python>=3.12
- anaconda
- aiohttp
- pip
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def on_disconnect(self: "Bot") -> None:

bot = Bot(intents=intents)

data_gen = DataGenerator(CONFIG["tokens"]["github"], branch="christmas")
data_gen = DataGenerator(CONFIG["tokens"]["github"])

try:
with open("universe.pkl", "rb") as f:
Expand Down
2 changes: 1 addition & 1 deletion util/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ class DataGenerator:
def __init__(
self: "DataGenerator",
github_token: str,
repository: str = "martinkadlec0/hc-tcg",
repository: str = "hc-tcg/hc-tcg",
branch: str = "master",
font: ImageFont.FreeTypeFont = None,
) -> None:
Expand Down

0 comments on commit 3e8d492

Please sign in to comment.