Skip to content

Commit

Permalink
version bump and update GA
Browse files Browse the repository at this point in the history
  • Loading branch information
ejolly committed Oct 31, 2023
1 parent 3624a5a commit d12b4bd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/auto_formatting_tests_and_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,23 @@ jobs:
# OSs to test
os: [ubuntu-latest, macos-latest]
# Python versions to test
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, 3.10, 3.11]
# By default everything should pass for the workflow to pass
experimental: [false]
include:
# Windows sometimes fails to install due to dependency changes, but eventually sort themselves out. So let these tests fail
- os: windows-latest
python-version: 3.7
experimental: true
- os: windows-latest
python-version: 3.8
experimental: true
- os: windows-latest
python-version: 3.9
experimental: true
- os: windows-latest
python-version: 3.10
experimental: true
- os: windows-latest
python-version: 3.11
experimental: true
steps:
# Step up miniconda
- name: Download and setup Miniconda
Expand Down
2 changes: 1 addition & 1 deletion nltools/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Specifies current version of nltools to be used by setup.py and __init__.py
"""

__version__ = "0.4.8"
__version__ = "0.5.0"
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
author="Cosan Lab",
author_email="luke.j.chang@dartmouth.edu",
url="https://cosanlab.github.io/nltools",
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=requirements,
extras_require={"interactive_plots": ["ipywidgets>=5.2.2"]},
packages=find_packages(exclude=["nltools/tests"]),
Expand All @@ -29,8 +29,10 @@
"analysis engine powering www.neuro-learn.org.",
keywords=["neuroimaging", "preprocessing", "analysis", "machine-learning"],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit d12b4bd

Please sign in to comment.