Skip to content

Commit

Permalink
add support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Oct 9, 2023
1 parent c07cb2b commit 5c3061e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

env:
PY_COLORS: 1
COLUMNS: 120
COLUMNS: 110

jobs:
test:
Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows, ubuntu, macos]
architecture: [x64]
json: [BUILTIN]
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Version 1.1.0 (in development)

- Added

* support for Python 3.12
* the :meth:`Service.request <msl.network.service.Service.request>` property
* `loads_kwargs` and `dumps_kwargs` keyword arguments to :func:`~msl.network.json.use`

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ def get_version():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
],
Expand Down

0 comments on commit 5c3061e

Please sign in to comment.