Skip to content

Commit 9e6bdf6

Browse files
authored
Support Python 3.11 (#119)
* Support Python 3.11 and 3.12 * fix distutils deprecation error in Python 3.12 * Update pyproject.toml * Drop 3.12 * Update pyproject.toml
1 parent 7465939 commit 9e6bdf6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: ["ubuntu-latest", "macos-latest"]
42-
python-version: ["3.8", "3.9", "3.10"]
42+
python-version: ["3.8", "3.9", "3.10", "3.11"]
4343

4444
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
4545
defaults:

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ If you want to use the most up-to-date version, you can install from the ``maste
1515
1616
pip install git+https://github.com/neurostuff/PyMARE.git
1717
18-
PyMARE requires Python >=3.6 and a number of packages.
18+
PyMARE requires Python >=3.8 and a number of packages.
1919
For a complete list, please see ``setup.cfg``.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[build-system]
2-
requires = ["setuptools==58.2.0", "wheel"]
2+
requires = ["setuptools==68.2.2", "wheel"]
33

44
[tool.black]
55
line-length = 99
6-
target-version = ["py37"]
6+
target-version = ["py39"]
77
include = '\.pyi?$'
88
exclude = '''
99

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers =
3131
Programming Language :: Python :: 3.8
3232
Programming Language :: Python :: 3.9
3333
Programming Language :: Python :: 3.10
34+
Programming Language :: Python :: 3.11
3435
Topic :: Scientific/Engineering
3536

3637
[options]

0 commit comments

Comments
 (0)