Skip to content
Merged
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
28 changes: 5 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
executor:
name: python/default
tag: '3.12'
tag: '3.13'

# docker:
# - auth:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
deploy_pypi:
executor:
name: python/default
tag: '3.12'
tag: '3.13'

# docker:
# - auth:
Expand All @@ -60,7 +60,7 @@ jobs:
tests:
executor:
name: python/default
tag: '3.12'
tag: '3.13'

# docker:
# - auth:
Expand All @@ -70,37 +70,19 @@ jobs:
environment:
- OSF_MIRROR_PATH: /tmp/data/templateflow
steps:
- restore_cache:
keys:
- annex-v1-{{ epoch }}
- annex-v1-
- run:
name: Install git and git-annex
name: Configure git
command: |
if [[ ! -e "/tmp/cache/git-annex-standalone.tar.gz" ]]; then
wget -O- http://neuro.debian.net/lists/focal.us-ca.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
sudo apt-key add .neurodebian/neurodebian.gpg
sudo apt-key adv --recv-keys --keyserver hkps://keys.openpgp.org 0xA5D32F012649A5A9 || true
sudo apt update && sudo apt-get install -y --no-install-recommends git-annex-standalone
mkdir -p /tmp/cache
tar czvf /tmp/cache/git-annex-standalone.tar.gz /usr/bin/git-annex /usr/bin/git-annex-shell /usr/lib/git-annex.linux
else
sudo tar xzfv /tmp/cache/git-annex-standalone.tar.gz -C /
fi
git config --global user.name "First Last"
git config --global user.email "email@domain.com"

- save_cache:
key: annex-v1-{{ epoch }}
paths:
- "/tmp/cache"

- attach_workspace:
at: ~/project

- run:
command: |
python .maint/update_requirements.py
echo git-annex >> dev-requirements.txt
name: Generate requirements.txt

- python/install-packages:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
needs: build
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
mode: ['wheel']
include:
- {python-version: '3.11', mode: 'repo'}
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Recognition",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = {file = "LICENSE"}
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"pybids >= 0.15.2",
"importlib_resources >= 5.7; python_version < '3.11'",
Expand All @@ -45,7 +45,7 @@ test = [
"toml",
]
datalad = [
"datalad ~= 1.0.0"
"datalad >= 1.0.0"
]
doc = [
"nbsphinx",
Expand Down
Loading