Skip to content

Commit

Permalink
Update to pyside6 and python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook committed Nov 9, 2023
1 parent 5438d8c commit 425c98c
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 66 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
required: false
default: ''
env:
LATEST_PY_VERSION: '3.10'
LATEST_PY_VERSION: '3.11'

# Required for creating a new release
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ on:
workflow_dispatch:

env:
LATEST_PY_VERSION: '3.10'
LATEST_PY_VERSION: '3.11'
COVERAGE_ARGS: '--cov --cov-report=term --cov-report=xml'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
100 changes: 46 additions & 54 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,26 @@ include = [
]

[tool.poetry.dependencies]
# Can update to python 3.11 once PySide6 supports it
python = '>=3.10,<3.11'
python = '>=3.10,<3.12'
attrs = '>=21.2'
click = '>=8.0'
click-help-colors = '>=0.9'
pillow = '>=10.0'
pyexiv2 = '>=2.6.2'
pyinaturalist = '>=0.18'
pyinaturalist-convert = '>=0.6.1'
# 6.5.1 Introduces a weird bug with settings menu (see PYSIDE-2346)
pyside6 = '6.5.0'
pyside6 = '6.6.0'
pyqtdarktheme = '^2.1.0'
pyyaml = '>=6.0'
qtawesome = '^1.1.1'
sqlalchemy = '^2.0.8'
sqlalchemy = '^2.0.23'
tablib = '^3.0'

# Documentation dependencies needed for Readthedocs builds
furo = {optional=true, version='^2023.3'}
furo = {optional=true, version='^2023.9'}
linkify-it-py = {optional=true, version='^2.0'}
myst-parser = {optional=true, version='^1.0'}
sphinx = {optional=true, version='^5.2'}
sphinx = {optional=true, version='^6.2'}
sphinx-autodoc-typehints = {optional=true, version='^1.17'}
sphinx-copybutton = {optional=true, version='>=0.5'}
sphinx-design = {optional=true, version='>=0.2'}
Expand All @@ -63,8 +61,8 @@ nox = '^2023.4'
nox-poetry = '^1.0'
pre-commit = '^3.5'
prettyprinter = '^0.18.0'
pyinstaller = '^5.12'
pytest = '^7.3'
pyinstaller = '^6.1'
pytest = '^7.4'
pytest-cov = '>=3.0'
pytest-xdist = '>=2.2'

Expand Down

0 comments on commit 425c98c

Please sign in to comment.