Skip to content

Commit

Permalink
qase-pytest: release 5.0.6
Browse files Browse the repository at this point in the history
Allow using package qase-pytest with Python 3.7.
This will enable those of our clients, who still use it, to
receive the latest package updates for Qase reporters.

Change required downgrading several packages to their latest versions
still supporting Python 3.7:
* setuptools from 69 to 68
* filelock from 3.13.1 to 3.12.2
* pytest from 8.0.0 to 7.4.4

Changed requirement qase-python-commons to version 2.0.11,
which includes qaseio==4.0.2, both supporting Python 3.7.
  • Loading branch information
NickVolynkin committed Apr 10, 2024
1 parent a90def0 commit 0810d4e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions qase-pytest/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "qase-pytest"
version = "5.0.5"
version = "5.0.6"
description = "Qase Pytest Plugin for Qase TestOps and Qase Report"
readme = "README.md"
authors = [{name = "Qase Team", email = "[email protected]"}]
Expand All @@ -15,11 +15,11 @@ classifiers = [
"Programming Language :: Python",
]
urls = {"Homepage" = "https://github.com/qase-tms/qase-python/tree/master/qase-pytest"}
requires-python = ">=3.8"
requires-python = ">=3.7"
dependencies = [
"qase-python-commons>=2.0.9,<2.1.0",
"pytest>=8.0.0",
"filelock~=3.13.1",
"qase-python-commons>=2.0.11,<2.1.0",
"pytest>=7.4.4",
"filelock~=3.12.2",
"more_itertools",
]

Expand All @@ -32,8 +32,8 @@ testing = [
[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 3.8
envlist = py{38,39,310,311}
minversion = 3.7
envlist = py{37,38,39,310,311}
[testenv]
deps =
Expand Down

0 comments on commit 0810d4e

Please sign in to comment.