Skip to content

Commit

Permalink
Stub out version 3.5 (pyutils#126)
Browse files Browse the repository at this point in the history
* Stub out version 3.5

* keep kernprof version in sync
  • Loading branch information
Erotemic authored Feb 20, 2022
1 parent e631122 commit f7468e4
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 3 deletions.
27 changes: 27 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# For more configuration details:
# https://docs.codecov.io/docs/codecov-yaml

# Check if this file is valid by running in bash:
# curl -X POST --data-binary @.codecov.yml https://codecov.io/validate


codecov:
require_ci_to_pass: yes

coverage:
precision: 2
round: down
range: "50...100"

parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no

comment:
layout: "reach,diff,flags,files,footer"
behavior: default
require_changes: no
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changes
=======

3.5.0
~~~~~

3.4.0
~~~~~
* Drop support for Python <= 3.5.x
Expand Down
2 changes: 1 addition & 1 deletion kernprof.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# NOTE: This version needs to be manually maintained with the line_profiler
# __version__ for now.
__version__ = '3.4.0'
__version__ = '3.5.0'

# Guard the import of cProfile such that 3.x people
# without lsprof can still use this script.
Expand Down
2 changes: 1 addition & 1 deletion line_profiler/line_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
f'Has it been compiled? Underlying error is ex={ex!r}'
)

__version__ = '3.4.0'
__version__ = '3.5.0'


def is_coroutine(f):
Expand Down
2 changes: 1 addition & 1 deletion requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 4.6.11
pytest-cov >= 2.10.1
coverage[toml] >= 5.3
ubelt >= 0.8.7
ubelt >= 1.0.1

0 comments on commit f7468e4

Please sign in to comment.