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
10 changes: 6 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ image: Ubuntu

environment:
matrix:
- PY: '3.8'
TOXENV: py
- PY: '3.9'
TOXENV: py
- PY: '3.10'
TOXENV: py
- PY: '3.11'
TOXENV: py
- PY: '3.8'
- PY: '3.12'
TOXENV: py
- PY: '3.13'
TOXENV: py
- PY: '3.10'
TOXENV: lint
- PY: '3.8'
- PY: '3.10'
TOXENV: typing

build: off
Expand Down
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ workflows:
- test:
matrix:
parameters:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
- lint
- typing

Expand All @@ -43,7 +43,7 @@ jobs:

lint:
docker:
- image: cimg/python:3.8
- image: cimg/python:3.10
steps:
- checkout
- install-deps
Expand All @@ -53,7 +53,7 @@ jobs:

typing:
docker:
- image: cimg/python:3.8
- image: cimg/python:3.10
steps:
- checkout
- install-deps
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/inception-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: '3.10'

- name: Install tinuous and coverage
run: |
Expand All @@ -39,8 +39,7 @@ jobs:
- name: Install datalad and git-annex
if: matrix.extra == 'datalad'
run: |
python -m pip install datalad datalad-installer
datalad-installer --sudo ok neurodebian git-annex -m neurodebian
python -m pip install git-annex datalad

- name: Checkout con/tinuous-inception
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '^3.8'
python-version: '^3.10'

- name: Install Python dependencies
run: python -m pip install build twine
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- 'pypy-3.8'
- '3.13'
- 'pypy-3.9'
- 'pypy-3.10'
- 'pypy-3.11'
toxenv: [py]
include:
- python-version: '3.8'
- python-version: '3.10'
toxenv: lint
- python-version: '3.8'
- python-version: '3.10'
toxenv: typing
steps:
- name: Check out repository
Expand Down
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ language: python
cache: pip
dist: focal
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
env:
- TOXENV=py
jobs:
include:
- python: '3.8'
- python: '3.10'
env: TOXENV=lint
- python: '3.8'
- python: '3.10'
env: TOXENV=typing
install:
- pip install tox
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ See <https://github.com/con/tinuous-inception> for an example setup that uses

Installation
============
``tinuous`` requires Python 3.8 or higher. Just use `pip
``tinuous`` requires Python 3.9 or higher. Just use `pip
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install
``tinuous`` and its dependencies::

Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ classifiers =
#Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
Expand All @@ -41,7 +41,7 @@ project_urls =
packages = find:
package_dir =
=src
python_requires = >=3.8
python_requires = >=3.9
install_requires =
click >= 7.0
click-loglevel ~= 0.2
Expand All @@ -52,7 +52,6 @@ install_requires =
python-dotenv >= 0.11, < 2.0
PyYAML >= 5.0
requests ~= 2.20
typing_extensions; python_version < '3.9'

[options.extras_require]
all =
Expand Down