Skip to content

Commit

Permalink
Merge pull request #14 from blauret/fma_qt6
Browse files Browse the repository at this point in the history
Moved to Qt6
  • Loading branch information
blauret authored Oct 7, 2023
2 parents 11559a8 + b462ca3 commit e51a3de
Show file tree
Hide file tree
Showing 9 changed files with 1,855 additions and 275 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
CACHE_VERSION: 1
DEFAULT_PYTHON: "3.10"
DEFAULT_PYTHON: "3.11"
PRE_COMMIT_HOME: ~/.cache/pre-commit

jobs:
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2
Expand Down Expand Up @@ -48,7 +48,6 @@ jobs:
. venv/bin/activate
pip install -U pip setuptools pre-commit
pip install -r requirements.txt
pip install -e .
pre-commit:
name: Prepare pre-commit environment
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.3.0
hooks:
- id: black
args:
- --safe
- --quiet

- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand All @@ -21,6 +21,6 @@ repos:
hooks:
- id: codespell
args:
- --ignore-words-list=dout,hass
- --ignore-words-list=dout,hass,hsi
- --skip="./.*"
- --quiet-level=2
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ViewTester",
"type": "python",
"request": "launch",
"module": "pyG5.pyG5ViewTester",
"justMyCode": true
},
{
"name": "App",
"type": "python",
"request": "launch",
"module": "pyG5.pyG5Main",
"args": ["-v"],
"justMyCode": true
}
]
}
Loading

0 comments on commit e51a3de

Please sign in to comment.