Skip to content

Commit 83f3f56

Browse files
authored
Merge pull request #104 from Summoner-Network/main
Resolve python-dotenv and python version mismatch
2 parents 7c2f986 + 6c314dc commit 83f3f56

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Remy's
2+
# Remy's
23
trash/
34
experiments/
45
*.DS_Store
@@ -8,9 +9,9 @@ experiments/
89
*.old
910
*.backup.*
1011
logs/
11-
img/assets/
12-
simulations/summoner_mock.py
1312
test_logs.py
13+
validation_draft.json
14+
server_comm.jsonc
1415

1516
# Byte-compiled / optimized / DLL files
1617
__pycache__/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ pytest~=9.0.3
22
asyncio==3.4.3
33
aioconsole==0.8.1
44
maturin==1.8.3
5-
python-dotenv~=1.2.1
5+
python-dotenv~=1.2.2
66
typing_extensions==4.15.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
python_requires=">=3.9",
1616
install_requires=[
1717
"aioconsole==0.8.1",
18-
"python-dotenv~=1.2.1",
18+
"python-dotenv~=1.2.1; python_version < '3.10'",
19+
"python-dotenv~=1.2.2; python_version >= '3.10'",
1920
"typing_extensions==4.15.0; python_version < '3.13'",
2021
],
2122
extras_require={

0 commit comments

Comments
 (0)