Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 16 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,17 @@ jobs:
name:
[
# latest conan 1.X on U22 and Windows
"u22-py38-conan1-latest",
"u22-py39-conan1-latest",
"u22-py310-conan1-latest",
"win-py311-conan1-latest",
# conan minimum version with python minimum version
"u22-py38-conan1.48",
"u22-py39-conan1.48",
# conan 2 stuff with bleeding edge - use Python 3.12 (U22 needed)
"u22-py310-conan2.3", # 2.3 API changes
"u22-py312-conan2-latest", # post 2.3 API changes
"win-py312-conan2-latest", # latest everything
"u22-py314-conan2-latest", # post 2.3 API changes
"win-py314-conan2-latest", # latest everything
]
include:
- name: "u22-py38-conan1-latest"
python: "3.8"
os: ubuntu-22.04
conan: "<2"
conan_server: "<2"
pytest_args: ""
- name: "u22-py39-conan1-latest"
python: "3.9"
conan: "<2"
Expand All @@ -60,8 +53,8 @@ jobs:
conan: "<2"
conan_server: "<2"
pytest_args: ""
- name: "u22-py38-conan1.48"
python: "3.8"
- name: "u22-py39-conan1.48"
python: "3.9"
os: ubuntu-22.04
conan: "==1.48.0"
conan_server: "==1.48.0"
Expand All @@ -72,17 +65,17 @@ jobs:
conan: <2.4
conan_server: "-server <2.4"
pytest_args: "-m conanv2"
- name: "u22-py312-conan2-latest"
python: "3.12"
- name: "u22-py314-conan2-latest"
python: "3.13"
os: ubuntu-22.04
conan: <2.8
conan_server: "-server <2.8"
conan: <2.21
conan_server: "-server <2.21"
pytest_args: "-m conanv2"
- name: win-py312-conan2-latest
python: "3.12"
- name: win-py314-conan2-latest
python: "3.14"
os: windows-latest
conan: <2.8 # latest conan 2
conan_server: "-server <2.8"
conan: <2.21 # latest conan 2
conan_server: "-server <2.21"
pytest_args: "-m conanv2"
env:
DISPLAY: ":99.0"
Expand Down Expand Up @@ -117,7 +110,8 @@ jobs:
sudo apt install qt6-wayland
######### Platform specifics end #########
- name: Install specific Conan version
run: | # markupsafe is a workaround fix for broken conan dependencies
run: | # pip version needed for --no-use-pep517 and markupsafe is a workaround fix for broken conan dependencies
python -m pip install pip==24.3.1
pip install markupsafe==2.0.1 --use-pep517
pip install "conan${{ matrix.conan }}" --use-pep517
pip install "conan${{ matrix.conan_server }}" --use-pep517
Expand Down Expand Up @@ -177,6 +171,6 @@ jobs:
-Dsonar.exclusions=**/*_ui.py
-Dsonar.tests=./test
-Dsonar.sourceEncoding=UTF-8
-Dsonar.python.version=3.8,3.9,3.10,3.11,3.12
-Dsonar.python.version=3.8,3.9,3.10,3.11,3.12,3.13,3.14
-Dsonar.python.coverage.reportPaths=**/cov/cov-*.xml
-Dsonar.python.xunit.reportPath=**/results/result-unit-*.xml
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ You can also assign its icon to it from the site packages folder in **conan_expl
> From version 2.4.0 the conan-unified-api package provides the compatiblity layer for Conan Explorer. By upgrading it in your Python enviroment, the compatibility will also be ensured. The version number corresponds to the latest conan version supported. Please see https://pypi.org/project/conan-unified-api/ to find the latest version.

> ⚠ **Warning** - **Deprecation of Python 3.X**
> From version 2.0.0 Python 3.6 support will be dropped, having reached end-of-life.
> From version 2.2.0 Python 3.7 support will be dropped, having reached end-of-life.
> From version 2.0.0 Python 3.6 support will be dropped, having reached end-of-life.
> From version 2.2.0 Python 3.7 support will be dropped, having reached end-of-life.
> From version 2.5.0 Python 3.8 support will be dropped, having reached end-of-life.

## 🛠 Toolchain

Expand Down
21 changes: 11 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
[project]
name = "conan-explorer"
authors = [{name = "Péter Gosztolya and Contributors"}]
version = "2.4.2"
requires-python = ">=3.8"
version = "2.5.0"
requires-python = ">=3.9, <3.15"
description = "Package Explorer and App Launcher for Conan"
keywords = ["conan", "gui"]
license = {'file'="LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: X11 Applications :: Qt",
"Environment :: Win32 (MS Windows)"
]
dependencies = [
"conan-unified-api >=2.15.0, <3.0.0", # MIT License
# 6.4.3 is needed for off-the-shelf U20 support
"PySide6-Essentials>=6.4.3", # LGPLv3 License
"PySide6-Essentials<=6.11.0, >6.4.3", # LGPLv3 License
"jsonschema>=3.2.0, <5", # MIT License
"dictdiffer==0.9.0", # MIT License
# compatibility
Expand Down Expand Up @@ -62,12 +63,12 @@ dev = [
"debugpy", # Qt thread debugging
]
test = [
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-mock==3.14.0",
"pytest-qt==4.4.0",
"psutil==6.1.1",
"pytest-check==2.4.1",
"pytest==8.4.2",
"pytest-cov==7.0.0",
"pytest-mock==3.15.1",
"pytest-qt==4.5.0",
"psutil==7.1.2",
"pytest-check==2.6.0",
"pywin32; sys_platform=='win32'"
]

Expand Down
Loading