Skip to content

Commit

Permalink
build: updates project settings (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Oct 25, 2024
1 parent 0336387 commit 8d2e982
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tag_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.DEFAULT_BRANCH }}
fetch-depth: 0
token: ${{ secrets.SERVICE_TOKEN }}
- name: Set up Python 3.8
uses: actions/setup-python@v3
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install -e .[dev] --no-cache-dir
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_and_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"

[project]
name = "aind-behavior-video-transformation"
description = "Generated from aind-library-template"
description = "Handles behavior modality folder"
license = {text = "MIT"}
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{name = "Allen Institute for Neural Dynamics"}
]
Expand Down Expand Up @@ -39,7 +39,7 @@ version = {attr = "aind_behavior_video_transformation.__version__"}

[tool.black]
line-length = 79
target_version = ['py38']
target_version = ['py310']
exclude = '''
(
Expand Down Expand Up @@ -69,7 +69,7 @@ exclude_lines = [
"import",
"pragma: no cover"
]
fail_under = 100
fail_under = 90

[tool.isort]
line_length = 79
Expand Down

0 comments on commit 8d2e982

Please sign in to comment.