Skip to content

Commit c8b6323

Browse files
authored
v3.9.1 (#267)
* Add Supercharger achievement * Update pyproject.toml * Update doc_requirements.txt * Update conf.py * Update changelog.rst * Fix formatting of `**kwargs` in changelog entry Corrected the markup surrounding `**kwargs` for consistency in the changelog. This ensures proper rendering in the documentation. * Update version to 3.9.1 Bump the version from 3.9.0 to 3.9.1 to reflect recent changes. This ensures the software version aligns with the latest updates and modifications. * Remove FullWar API extension from the codebase The FullWar API extension and its associated documentation have been fully removed. This functionality was limited to a small group of users and is no longer maintained or required. Any references to it have been deleted to clean up the codebase. * Remove `full_war_api` extension from documentation The `full_war_api` extension has been removed due to lack of maintenance. Associated references in the documentation have also been deleted to reflect this change. * Update minimum Python version to 3.9 across the project Raise the required Python version from 3.7 to 3.9 in configuration files, build workflows, and documentation. As 3.7 and 3.8 are eol. * Update changelog.rst * Update enums.py
1 parent 851c187 commit c8b6323

File tree

12 files changed

+31
-234
lines changed

12 files changed

+31
-234
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# For example, pypy2 and pypy3
1212
matrix:
1313
# python-version: ["3.7.13", "3.8.13", "3.9.13", "3.10"]
14-
python-version: [3.8]
14+
python-version: [3.9]
1515

1616
steps:
1717
- uses: actions/checkout@v3

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ formats: []
44
build:
55
os: ubuntu-22.04
66
tools:
7-
python: "3.7"
7+
python: "3.9"
88

99
sphinx:
1010
configuration: docs/conf.py

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Getting Started
2626

2727
Installing
2828
-----------
29-
**Python 3.7 or higher is required**
29+
**Python 3.9 or higher is required**
3030

3131
.. code:: sh
3232

coc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424

25-
__version__ = "3.9.0"
25+
__version__ = "3.9.1"
2626

2727
from .abc import BasePlayer, BaseClan
2828
from .clans import RankedClan, Clan

coc/enums.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ def in_game_name(self) -> str:
354354
"Dragon Slayer",
355355
"Ungrateful Child",
356356
"Superb Work",
357+
"Supercharger",
357358

358359
# Builder Base
359360
"Master Engineering",

coc/ext/fullwarapi/__init__.py

Lines changed: 0 additions & 210 deletions
This file was deleted.

doc_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ sphinx
22
sphinxcontrib_trio
33
autodocsumm
44
sphinx_rtd_theme
5-
ujson
5+
orjson
66
aiohttp

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project = 'coc'
1616
copyright = '2022, mathsman5133'
1717
author = 'mathsman5133'
18-
release = '3.9.0'
18+
release = '3.9.1'
1919

2020

2121
# -- General configuration ---------------------------------------------------

docs/extensions/full_war_api.rst

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ coc.py: A Clash of Clans API Wrapper
4444
:maxdepth: 2
4545
:caption: Extensions
4646

47-
extensions/full_war_api
4847
extensions/triggers
4948

5049
.. _examples:

0 commit comments

Comments
 (0)