Skip to content

Commit

Permalink
Update to Python 3.11 (#245)
Browse files Browse the repository at this point in the history
* Update to Python 3.11

* Update CI python version
  • Loading branch information
TheJoeSmo authored Nov 19, 2022
1 parent c04ca02 commit 4f9516d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- run: pip install -r requirements-dev.txt

# Install OpenGL so PySide6 works properly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
architecture: ${{ matrix.config.architecture }}

- name: Display Python version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: true
matrix:
os: [windows-latest]
python-version: ["3.10"]
python-version: ["3.11"]
defaults:
run:
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ Pygments==2.13.0
pyinstaller==5.5
pyinstaller-hooks-contrib==2022.10
pyparsing==3.0.9
PySide6==6.4.0
PySide6-Addons==6.4.0
PySide6-Essentials==6.4.0
PySide6==6.4.0.1
PySide6-Addons==6.4.0.1
PySide6-Essentials==6.4.0.1
pytest==7.1.3
pytest-qt==4.1.0
pytz==2022.5
pyupgrade==3.1.0
qt-material==2.12
requests==2.28.1
setuptools==65.4.1
shiboken6==6.4.0
shiboken6==6.4.0.1
smmap==5.0.0
snowballstemmer==2.2.0
sortedcontainers==2.4.0
Expand Down
11 changes: 4 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ Jinja2==3.1.2
MarkupSafe==2.1.1
nest-asyncio==1.5.6
numpy==1.23.4
pip==22.3
pydantic==1.10.2
PySide6==6.4.0
PySide6-Addons==6.4.0
PySide6-Essentials==6.4.0
PySide6==6.4.0.1
PySide6-Addons==6.4.0.1
PySide6-Essentials==6.4.0.1
qt-material==2.12
setuptools==65.4.1
shiboken6==6.4.0
shiboken6==6.4.0.1
typing_extensions==4.4.0
wheel==0.37.1
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ install_requires =
nest-asyncio >=1.5.6
numpy >=1.23.4
func-timeout >=4.3.0
python_requires = >=3.10
python_requires = >=3.11

[options.packages.find]
exclude =
Expand Down

0 comments on commit 4f9516d

Please sign in to comment.