Skip to content

Commit 801464b

Browse files
authored
Merge pull request #92 from AllenNeuralDynamics/fix/91
packaging: restrict Python minimum version
2 parents 5c7d01a + 4a3f04d commit 801464b

4 files changed

Lines changed: 7 additions & 59 deletions

File tree

.github/workflows/init.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/tag_and_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
ref: ${{ env.DEFAULT_BRANCH }}
1717
fetch-depth: 0
1818
token: ${{ secrets.SERVICE_TOKEN }}
19-
- name: Set up Python 3.8
19+
- name: Set up Python 3.9
2020
uses: actions/setup-python@v3
2121
with:
22-
python-version: 3.8
22+
python-version: 3.9
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install -e .[dev] --no-cache-dir
@@ -73,10 +73,10 @@ jobs:
7373
- uses: actions/checkout@v3
7474
- name: Pull latest changes
7575
run: git pull origin main
76-
- name: Set up Python 3.8
76+
- name: Set up Python 3.9
7777
uses: actions/setup-python@v2
7878
with:
79-
python-version: 3.8
79+
python-version: 3.9
8080
- name: Install dependencies
8181
run: |
8282
pip install --upgrade setuptools wheel twine build

.github/workflows/test_and_lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [ '3.8', '3.9', '3.10' ]
13+
python-version: [ '3.9', '3.10' ]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
21-
run: |
21+
run: |
2222
python -m pip install -e .[dev]
2323
- name: Run linter checks
2424
run: flake8 . && interrogate --verbose .

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "aind-dynamic-foraging-basic-analysis"
77
description = "Generated from aind-library-template"
88
license = {text = "MIT"}
9-
requires-python = ">=3.7"
9+
requires-python = ">=3.9"
1010
authors = [
1111
{name = "Allen Institute for Neural Dynamics"}
1212
]

0 commit comments

Comments
 (0)