Skip to content

Commit e566fa4

Browse files
authored
Merge pull request #216 from reportportal/develop
Release
2 parents 7405abf + 5981032 commit e566fa4

File tree

10 files changed

+185
-217
lines changed

10 files changed

+185
-217
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
max-line-length = 119

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ on:
3131

3232
jobs:
3333
build:
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: [ '2.7', '3.6', '3.7', '3.8', '3.9', '3.10' ]
37+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
3838
steps:
3939
- name: Checkout repository
4040
uses: actions/checkout@v3
@@ -53,7 +53,7 @@ jobs:
5353
run: tox
5454

5555
- name: Upload coverage to Codecov
56-
if: matrix.python-version == 3.6 && success()
56+
if: matrix.python-version == 3.7 && success()
5757
uses: codecov/codecov-action@v3
5858
with:
5959
files: coverage.xml

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44
### Added
5+
- `launch_uuid_print` and `print_output` arguments in `RPClient` class constructor, by @HardNorth
6+
### Removed
7+
- Python 2.7, 3.6 support, by @HardNorth
8+
9+
## [5.3.5]
10+
### Added
511
- `__getstate__` and `__setstate__` methods in `RPClient` class to make it possible to pickle it, by @HardNorth
612
### Changed
713
- `token` field of `RPClient` class was renamed to `api_key` to maintain common convention, by @HardNorth

0 commit comments

Comments
 (0)