Skip to content

Commit d12b4bd

Browse files
committed
version bump and update GA
1 parent 3624a5a commit d12b4bd

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/auto_formatting_tests_and_coverage.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,23 @@ jobs:
3232
# OSs to test
3333
os: [ubuntu-latest, macos-latest]
3434
# Python versions to test
35-
python-version: [3.7, 3.8, 3.9]
35+
python-version: [3.8, 3.9, 3.10, 3.11]
3636
# By default everything should pass for the workflow to pass
3737
experimental: [false]
3838
include:
3939
# Windows sometimes fails to install due to dependency changes, but eventually sort themselves out. So let these tests fail
40-
- os: windows-latest
41-
python-version: 3.7
42-
experimental: true
4340
- os: windows-latest
4441
python-version: 3.8
4542
experimental: true
4643
- os: windows-latest
4744
python-version: 3.9
4845
experimental: true
46+
- os: windows-latest
47+
python-version: 3.10
48+
experimental: true
49+
- os: windows-latest
50+
python-version: 3.11
51+
experimental: true
4952
steps:
5053
# Step up miniconda
5154
- name: Download and setup Miniconda

nltools/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Specifies current version of nltools to be used by setup.py and __init__.py
22
"""
33

4-
__version__ = "0.4.8"
4+
__version__ = "0.5.0"

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
author="Cosan Lab",
1616
author_email="[email protected]",
1717
url="https://cosanlab.github.io/nltools",
18-
python_requires=">=3.6",
18+
python_requires=">=3.8",
1919
install_requires=requirements,
2020
extras_require={"interactive_plots": ["ipywidgets>=5.2.2"]},
2121
packages=find_packages(exclude=["nltools/tests"]),
@@ -29,8 +29,10 @@
2929
"analysis engine powering www.neuro-learn.org.",
3030
keywords=["neuroimaging", "preprocessing", "analysis", "machine-learning"],
3131
classifiers=[
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: 3.10",
35+
"Programming Language :: Python :: 3.11",
3436
"Operating System :: OS Independent",
3537
"Intended Audience :: Science/Research",
3638
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)