Skip to content

Commit

Permalink
Update numpy, PyYAML, scipy, matplotlib for Python 3.12
Browse files Browse the repository at this point in the history
Fix DeprecationWarning
  • Loading branch information
chennin committed May 23, 2024
1 parent 3995ce9 commit 1201816
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ itsdangerous==2.1.2
Jinja2==3.1.4
kiwisolver==1.4.4
MarkupSafe==2.1.1
matplotlib==3.6.2
matplotlib==3.9.0
networkx==2.8.8
numpy==1.24.1
numpy==1.26.4
packaging==22.0
Pillow==10.3.0
plotly==5.11.0
pyparsing==3.0.9
python-dateutil==2.8.2
PyYAML==6.0
scipy==1.10.0
PyYAML==6.0.1
scipy==1.13.1
six==1.16.0
SQLAlchemy==1.4.46
tenacity==8.1.0
Expand Down
4 changes: 2 additions & 2 deletions stellarisdashboard/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ def game_data_dirs(self):
if mod_data_path is not None
]
except Exception as e:
logger.warn(f"Failed to read enabled mods from {dlc_load_path}. Using only base game data.")
logger.warn(e)
logger.warning(f"Failed to read enabled mods from {dlc_load_path}. Using only base game data.")
logger.warning(e)
return [self.stellaris_install_path]

@property
Expand Down

0 comments on commit 1201816

Please sign in to comment.