Skip to content

Commit

Permalink
Support Python 3.11 (#119)
Browse files Browse the repository at this point in the history
* Support Python 3.11 and 3.12

* fix distutils deprecation error in Python 3.12

* Update pyproject.toml

* Drop 3.12

* Update pyproject.toml
  • Loading branch information
JulioAPeraza authored Apr 11, 2024
1 parent 7465939 commit 9e6bdf6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
defaults:
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ If you want to use the most up-to-date version, you can install from the ``maste
pip install git+https://github.com/neurostuff/PyMARE.git
PyMARE requires Python >=3.6 and a number of packages.
PyMARE requires Python >=3.8 and a number of packages.
For a complete list, please see ``setup.cfg``.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[build-system]
requires = ["setuptools==58.2.0", "wheel"]
requires = ["setuptools==68.2.2", "wheel"]

[tool.black]
line-length = 99
target-version = ["py37"]
target-version = ["py39"]
include = '\.pyi?$'
exclude = '''
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering

[options]
Expand Down

0 comments on commit 9e6bdf6

Please sign in to comment.