Skip to content

Commit

Permalink
Upgrade to Python 3.12 and PySide 6.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Mar 1, 2024
1 parent 3595299 commit c861b8f
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 91 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
5 changes: 3 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ verify_ssl = true
name = "pypi"

[packages]
PySide6 = "<6.5" # 6.5.0 causes fatal Python error. Try 6.5.1 when released.
PySide6 = "*"
four-letter-blocks = {editable = true, path = "."}
beautifulsoup4 = "*"
scipy = "*"

[dev-packages]
four-letter-blocks = {editable = true, extras = ["dev"], path = "."}
mypy = "*"

[requires]
python_version = "3.10"
python_version = "3.12"
137 changes: 51 additions & 86 deletions Pipfile.lock

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

9 changes: 9 additions & 0 deletions docs/construct_your_own.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,15 @@ it by installing those dependencies like this:

sudo apt-get install freeglut3 freeglut3-dev

Another known bug on Ubuntu 22.04:

>"qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though
> it was found."
Work around it by installing a dependency like this:

sudo apt install libxcb-cursor0

### Splitting Up the Grid
Start by filling in the title
and grid. Use the `#` character for black squares. As you type, the bottom of
Expand Down

0 comments on commit c861b8f

Please sign in to comment.