Skip to content

Commit fae4b9b

Browse files
committed
bump version
1 parent f0e5084 commit fae4b9b

File tree

7 files changed

+17
-11
lines changed

7 files changed

+17
-11
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
2-
min_python_version = 3.8
2+
min_python_version = 3.9
33

44
exclude = src/_discord
55

.github/workflows/python-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
max-parallel: 1
1919
fail-fast: false
2020
matrix:
21-
python-version: ["3.8", "3.11"]
21+
python-version: ["3.9", "3.11"]
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Set up Python ${{ matrix.python-version }}
@@ -37,13 +37,13 @@ jobs:
3737
- name: Test version compatibility
3838
env:
3939
DISCORD_TOKEN: ${{secrets.DATT}}
40-
if: ${{ matrix.python-version != 3.8 }}
40+
if: ${{ matrix.python-version != 3.9 }}
4141
run: |
4242
pytest -v testing/test_period_dynamic.py
4343
- name: Test all
4444
env:
4545
DISCORD_TOKEN: ${{secrets.DATT}}
46-
if: ${{ matrix.python-version == 3.8 }}
46+
if: ${{ matrix.python-version == 3.9 }}
4747
run: |
4848
pytest -v -m "not group_remote"
4949
pytest -v -m "group_remote"

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build:
1212
apt_packages:
1313
- inkscape
1414
tools:
15-
python: "3.8"
15+
python: "3.9"
1616
jobs:
1717
pre_build:
1818
- pip install .[all] .[docs]

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Installation
3434
----------------------
3535
DAF can be installed though command prompt/terminal using the bottom commands.
3636

37-
Pre-requirement: `Python (minimum v3.8 and currently max 3.11; 3.12 support is pending) <https://www.python.org/downloads/>`_.
37+
Pre-requirement: `Python (minimum v3.9 and currently max 3.11; 3.12 support is pending) <https://www.python.org/downloads/>`_.
3838

3939
**Main package**
4040

docs/source/changelog.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,15 @@ Releases
3939

4040
v3.2.0
4141
===================
42-
- Moved library tkclasswiz to a separate library on PyPI and made it a requirement.
43-
- Object nicknaming (part of tkclasswiz)
44-
- Type nicknaming (part of tkclasswiz)
42+
- GUI:
43+
44+
- Moved library tkclasswiz to a separate library on PyPI and made it a requirement.
45+
- Object nicknaming (part of tkclasswiz)
46+
- Type nicknaming (part of tkclasswiz)
47+
- Fixed bug where the object edit window could not be closed after trying to edit a non-editable object.
48+
49+
- |BREAK_CH| Minimum Python version bumped to **Python 3.9**.
50+
4551

4652

4753
v3.1.2

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ DAF can be installed though command prompt/terminal using the bottom commands.
6161

6262
.. tab-item:: Main package
6363

64-
Pre-requirement: `Python (minimum v3.8) <https://www.python.org/downloads/>`_
64+
Pre-requirement: `Python (minimum v3.9) <https://www.python.org/downloads/>`_
6565

6666
.. code-block:: bash
6767

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ authors = [
1515
]
1616
description = "Framework for periodic advertisements on Discord"
1717
readme = "README.rst"
18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919
keywords = ["Discord", "Advertising", "Framework", "NFT", "Shilling"]
2020
classifiers = [
2121
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)