Skip to content

Commit

Permalink
feat: Lift Python version restriction and test for 10/11/12
Browse files Browse the repository at this point in the history
Merge pull request #29 from DSD-DBS/upgrade-python-versions
  • Loading branch information
ewuerger authored Jan 17, 2024
2 parents 1409b80 + 0c74302 commit 228a810
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
python_version:
- "3.10"
- "3.11"
- "3.12"
include:
- os: windows-latest
python_version: "3.11"
python_version: "3.12"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{matrix.python_version}}
Expand All @@ -44,7 +45,7 @@ jobs:
git config --global --add url."https://${{ secrets.PAT_GITHUB }}@github".insteadOf https://github
- name: Pre-install private Github dependencies
run: |-
python -m pip install git+https://github.com/DSD-DBS/polarion-rest-api-client.git@v0.2.1
python -m pip install git+https://github.com/DSD-DBS/polarion-rest-api-client.git@v0.3.0
- name: Install test dependencies
run: |-
python -m pip install '.[test]'
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dynamic = ["version"]
name = "capella2polarion"
description = "Synchronise Capella models with Polarion projects"
readme = "README.md"
requires-python = ">=3.9, <3.12"
requires-python = ">=3.10, <3.13"
license = { text = "Apache-2.0" }
authors = [
{ name = "DB InfraGO AG" },
Expand All @@ -23,16 +23,17 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"capellambse",
"click",
"PyYAML",
"bidict",
"polarion-rest-api-client==0.2.1"
"polarion-rest-api-client==0.3.0",
"requests",
"bidict"
]

[project.urls]
Expand Down

0 comments on commit 228a810

Please sign in to comment.