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
4 changes: 1 addition & 3 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ jobs:
python-version: '3.11'

- name: Install requirements
run: |
pip install typer-invoke
inv pip install dev
run: pip install -r admin/requirements/requirements-dev.in

- name: Build app
run: inv build.app
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ jobs:
python-version: '3.12'

- name: Install requirements
run: |
pip install typer-invoke
inv pip install docs
run: pip install -r admin/requirements/requirements-docs.in

- name: Deploy docs
run: mkdocs gh-deploy --force
4 changes: 1 addition & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:
python-version: '3.11'

- name: Install requirements
run: |
pip install typer-invoke
inv pip install dev
run: pip install -r admin/requirements/requirements-dev.in

- name: isort
run: isort .
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ jobs:
python-version: '3.11'

- name: Install requirements
run: |
pip install typer-invoke
inv pip install dev
run: pip install -r admin/requirements/requirements-dev.in

- name: Set git user
run: |
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# Min and max versions supported
python-version: ['3.9', '3.12']
python-version: ['3.10', '3.13']
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout code
Expand All @@ -28,16 +28,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install requirements
run: |
pip install typer-invoke
inv pip install dev
run: pip install -r admin/requirements/requirements-dev.in

- name: Run tests on Linux and Mac
# Test folder(s) configured in `pyproject.toml`
# Skip Windows OS tests
run: |
python -m pytest . -m "not windows"
if: runner.os != 'Windows'

- name: Run tests on Windows
# Test folder(s) configured in `pyproject.toml`
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ readme = 'README.md'
authors = [{name = 'Joao Coelho'}]
license = {file = 'LICENSE.txt'}
dependencies = ['pyside6']
requires-python = '>=3.10,<=3.14'
classifiers = [
"License :: OSI Approved :: MIT License",
]
Expand Down