Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Install dependencies
run: |
pip install tox tox-gh-actions
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -88,15 +88,15 @@ jobs:
if: ${{ github.event_name == 'push' || github.event.pull_request.draft == false }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
pyenv: [pip]
exclude:
# Exclude 3.9-pip so we can add pre/post tasks to that environment.
- python-version: '3.9'
# Exclude 3.10-pip so we can add pre/post tasks to that environment.
- python-version: '3.10'
pyenv: pip
include:
# Re-include 3.9 with additional tox tasks.
- python-version: '3.9'
# Re-include 3.10 with additional tox tasks.
- python-version: '3.10'
pyenv: pip,docs

steps:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
matrix:
os: [ubuntu-latest, ubuntu-22.04, macOS-latest, macOS-14]
backend: [default, openblas]
python-version: ['3.9']
python-version: ['3.10']
include:
- os: ubuntu-latest
backend: intel
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Install Dependencies
run: |
pip install -e ".[dev]"
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Complete Install and Log Environment
run: |
python --version
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Getting Started - Installation
------------------------------

ASPIRE is a pip-installable package for Linux/Mac/Windows, and
requires Python 3.9-3.12. The recommended method of installation for
requires Python 3.10-3.13. The recommended method of installation for
getting started is to use Anaconda (64-bit) for your platform to
install Python. Python's package manager `pip` can then be used to
install `aspire` safely in that environment.
Expand All @@ -49,7 +49,7 @@ git clone https://github.com/ComputationalCryoEM/ASPIRE-Python.git
cd ASPIRE-Python

# Create a fresh environment
conda create --name aspire python=3.9 pip
conda create --name aspire python=3.10 pip

# Enable the environment
conda activate aspire
Expand All @@ -59,7 +59,7 @@ conda activate aspire
pip install -e ".[dev]"
```

If you prefer not to use Anaconda, or have other preferences for managing environments, you should be able to directly use `pip` with Python >= 3.9 from the local checkout or via PyPI.
If you prefer not to use Anaconda, or have other preferences for managing environments, you should be able to directly use `pip` with Python >= 3.10 from the local checkout or via PyPI.
Please see the full documentation for details and advanced instructions.

### Installation Testing
Expand Down
6 changes: 3 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ to view Conda's installation instructions.
Getting Started - Installation
************************************

Python 3.9 is used as an example, but the same procedure should work
for any of our supported Python versions 3.9-3.12. Below we pip install
Python 3.10 is used as an example, but the same procedure should work
for any of our supported Python versions 3.10-3.13. Below we pip install
the ``aspire`` package using the ``-e`` flag to install the project in
editable mode. The ``".[dev]"`` command installs ``aspire`` from the local
path with additional development tools such as pytest and Jupyter Notebook.
Expand All @@ -53,7 +53,7 @@ for more details on using pip install.
cd ASPIRE-Python

# Create a fresh environment
conda create --name aspire python=3.9 pip
conda create --name aspire python=3.10 pip

# Enable the environment
conda activate aspire
Expand Down
2 changes: 1 addition & 1 deletion environment-accelerate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:

dependencies:
- pip
- python=3.9
- python=3.10
- numpy=1.25.0
- scipy=1.13.1
- scikit-learn
Expand Down
2 changes: 1 addition & 1 deletion environment-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:

dependencies:
- pip
- python=3.9
- python=3.10
- numpy=1.25.0
- scipy=1.13.1
- scikit-learn
Expand Down
2 changes: 1 addition & 1 deletion environment-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:

dependencies:
- pip
- python=3.9
- python=3.10
- numpy=1.25.0
- scipy=1.13.1
- scikit-learn
Expand Down
2 changes: 1 addition & 1 deletion environment-openblas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:

dependencies:
- pip
- python=3.9
- python=3.10
- numpy=1.25.0
- scipy=1.13.1
- scikit-learn
Expand Down
2 changes: 1 addition & 1 deletion environment-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:

dependencies:
- pip
- python=3.9
- python=3.10
- numpy=1.25.0
- scipy=1.13.1
- scikit-learn
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aspire"
version = "0.14.2"
description = "Algorithms for Single Particle Reconstruction"
readme = "README.md" # Optional
requires-python = ">=3.9"
requires-python = ">=3.10"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
maintainers = [
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
clean
check
docs
py{3.9,3.10,3.11,3.12}-{pip}
py{3.10,3.11,3.12,3.13}-{pip}
minversion = 3.8.0

[testenv]
Expand Down Expand Up @@ -97,10 +97,10 @@ addopts = -m "not expensive and not scheduled"

[gh-actions]
python =
3.9: py3.9
3.10: py3.10
3.11: py3.11
3.12: py3.12
3.13: py3.13

[coverage:run]
relative_files = True
Expand Down
Loading