Skip to content

Commit 2ffc719

Browse files
author
Test User
committed
Update changelog and fix minimum version in setup.py
1 parent 76b87c1 commit 2ffc719

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Changes
66
* FIX: Make sure that the profiled code is run in the
77
``sys.modules['__main__']`` namespace to avoid issues w/e.g. pickling
88
(#423)
9+
* CHANGE: Drop support for Python 3.8 and Python 3.9
910

1011

1112
5.0.2

dev/secrets_configuration.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ export VARNAME_CI_SECRET="PYUTILS_CI_SECRET"
22
export VARNAME_TWINE_PASSWORD="PYUTILS_PYPI_MASTER_TOKEN"
33
export VARNAME_TEST_TWINE_PASSWORD="PYUTILS_TEST_PYPI_MASTER_TOKEN"
44
export VARNAME_TWINE_USERNAME="PYUTILS_PYPI_MASTER_TOKEN_USERNAME"
5+
export GITHUB_ENVIRONMENT_PYPI="pypi"
6+
export GITHUB_ENVIRONMENT_TESTPYPI="testpypi"
57
export VARNAME_TEST_TWINE_USERNAME="PYUTILS_TEST_PYPI_MASTER_TOKEN_USERNAME"
68
export GPG_IDENTIFIER="=PyUtils-CI <openpyutils@gmail.com>"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def run_cythonize(force=False):
315315
setupkw['license'] = 'BSD'
316316
setupkw['packages'] = list(setuptools.find_packages())
317317
setupkw['py_modules'] = ['kernprof', 'line_profiler']
318-
setupkw['python_requires'] = '>=3.8'
318+
setupkw['python_requires'] = '>=3.10'
319319
setupkw['license_files'] = ['LICENSE.txt', 'LICENSE_Python.txt']
320320
setupkw['package_data'] = {'line_profiler': ['py.typed', '*.pyi', '*.toml']}
321321
# `include_package_data` is needed to put `rc/line_profiler.toml` in

0 commit comments

Comments
 (0)