Skip to content

Commit 30ded20

Browse files
authored
Merge pull request #119 from discord-modmail/ci/test-on-py-3.10
2 parents b63eb07 + 0630b2d commit 30ded20

File tree

4 files changed

+16
-46
lines changed

4 files changed

+16
-46
lines changed

.github/workflows/lint_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python_version: ['3.8', '3.9']
40+
python_version: ['3.8', '3.9','3.10']
4141
env:
4242
PYTHON_VERSION: ${{ matrix.python_version }}
4343
steps:
@@ -117,7 +117,7 @@ jobs:
117117
strategy:
118118
fail-fast: false
119119
matrix:
120-
python_version: ['3.8', '3.9']
120+
python_version: ['3.8', '3.9','3.10']
121121
os: [ubuntu-latest, windows-latest, macos-latest]
122122
env:
123123
PYTHON_VERSION: ${{ matrix.python_version }}

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Added Dispatcher system, although it is not hooked into important features like thread creation yet. (#71)
13+
- Officially support python 3.10 (#119)
1314
- Officially support windows and macos (#121)
1415

1516
### Changed

poetry.lock

Lines changed: 11 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ chardet==4.0.0 ; python_version >= "2.7" and python_version != "3.0" and python_
1313
colorama==0.4.4 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2" and python_version != "3.3" and python_version != "3.4"
1414
coloredlogs==15.0.1 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2" and python_version != "3.3" and python_version != "3.4"
1515
discord.py @ https://github.com/Rapptz/discord.py/archive/master.zip ; python_full_version >= "3.8.0"
16-
humanfriendly==9.2 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2" and python_version != "3.3" and python_version != "3.4"
16+
humanfriendly==10.0 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2" and python_version != "3.3" and python_version != "3.4"
1717
idna==3.2 ; python_version >= "3.5"
1818
multidict==5.1.0 ; python_version >= "3.6"
1919
pycares==4.0.0
2020
pycparser==2.20 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2" and python_version != "3.3"
2121
pydantic==1.8.2 ; python_full_version >= "3.6.1"
22-
pyreadline==2.1 ; sys_platform == "win32"
22+
pyreadline3==3.3 ; sys_platform == "win32"
2323
python-dateutil==2.8.2 ; python_version != "3.0"
2424
python-dotenv==0.19.0 ; python_version >= "3.5"
2525
six==1.16.0 ; python_version >= "2.7" and python_version != "3.0" and python_version != "3.1" and python_version != "3.2"

0 commit comments

Comments
 (0)