diff --git a/.appveyor.yml b/.appveyor.yml index 7c3ed381..2f363fc2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ image: Visual Studio 2019 environment: matrix: - - PYTHON: "C:\\Python39" + - PYTHON: "C:\\Python311" # Shamelessly taken from https://github.com/plicease/Dist-Zilla-PluginBundle-Author-Plicease/blob/master/.appveyor.yml # Thanks! install: @@ -10,7 +10,7 @@ install: - copy %PYTHON%\python.exe %PYTHON%\python3.exe - SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH% - python3 -mpip install Pillow attrs configobj flake8 flake8-import-order - pycotap pygame pyinstaller==5.3 pysol-cards random2 setuptools six + pycotap pygame pyinstaller pysol-cards random2 setuptools six ttkthemes - perl -v - copy C:\msys64\mingw64\bin\mingw32-make.exe C:\msys64\mingw64\bin\make.exe diff --git a/.github/workflows/macos-package.yml b/.github/workflows/macos-package.yml index 6797c60f..fbc2ca67 100644 --- a/.github/workflows/macos-package.yml +++ b/.github/workflows/macos-package.yml @@ -13,10 +13,10 @@ jobs: - uses: actions/checkout@v2 - name: Set up python env: - PYVER: '3.9.7' - PYVER_SHORT: '3.9' + PYVER: '3.11.3' + PYVER_SHORT: '3.11' run: | - wget -O python.pkg "https://www.python.org/ftp/python/${PYVER}/python-${PYVER}-macosx10.9.pkg" + wget -O python.pkg "https://www.python.org/ftp/python/${PYVER}/python-${PYVER}-macos11.pkg" sudo installer -pkg python.pkg -target / echo "/Library/Frameworks/Python.framework/Versions/${PYVER_SHORT}/bin" >> $GITHUB_PATH - name: Install dependencies