Skip to content

Commit

Permalink
Support python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed Nov 20, 2023
1 parent 006b27c commit e2b4bcb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", "3.11", "3.12.0"]

steps:
- uses: actions/checkout@v3
Expand All @@ -38,7 +38,7 @@ jobs:
RTM_TOKEN: ${{ secrets.RTM_TOKEN }}
if: ${{needs.secrets.outputs.valid}} == 'true'
run: |
if python --version | grep -q 'Python 3.11' ; then
if python --version | grep -q 'Python 3.12' ; then
poe test-with-coverage
fi
- name: Coverage
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rtmilk"
version = "1.0.0"
version = "1.0.1"
description = "RTM API wrapper"
authors = ["Rehan Khwaja <[email protected]>"]
license = "MIT"
Expand All @@ -13,7 +13,8 @@ classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]

[tool.poetry.dependencies]
Expand All @@ -23,7 +24,7 @@ urllib3 = [
{ version = ">=1.26", python = ">=3.10,<4" }
]
pydantic = ">=2.4.2"
aiohttp = ">=3.8.1"
aiohttp = ">=3.9"
listdiff = ">=1.0.2"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit e2b4bcb

Please sign in to comment.