Skip to content

Commit

Permalink
Merge pull request #52 from CSCfi/update/python-3.11
Browse files Browse the repository at this point in the history
bump python 3.10 to 3.11
  • Loading branch information
teemukataja authored Feb 5, 2024
2 parents 3d14621 + 6621320 commit 87f36a5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
artifact_name: sdagui
os_suffix: macos-amd64
asset_name: sdagui
python-version: ["3.10"]
python-version: ["3.11"]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
artifact_name: sdacli
os_suffix: macos-amd64
asset_name: sdacli
python-version: ["3.10"]
python-version: ["3.11"]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
python-version: ["3.11"]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ sdacli file.txt -host server -u username -pub recipient.pub
## Installation

The GUI requires:
- Python 3.10+
- Python 3.11+
- Tkinter

```
Expand Down
3 changes: 2 additions & 1 deletion sda_uploader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""SDA Uploader Module."""
__version__ = "0.7.0"

__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.11",
],
install_requires=["crypt4gh", "paramiko"],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ skip_install = true

[gh-actions]
python =
3.10: flake8, mypy, black
3.11: flake8, mypy, black

0 comments on commit 87f36a5

Please sign in to comment.