File tree Expand file tree Collapse file tree 7 files changed +19
-6
lines changed Expand file tree Collapse file tree 7 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## [ 2.0.0]
9+ ### Changed
10+ - Python 2 is no longer supported.
11+ - @concatime : File paths are now encoded using ` os.fsencode() ` to support UTF-8
12+ file paths.
13+
814## [ 1.7.0]
915### Added
1016- @hkpeprah : Added JTAG APIs:
Original file line number Diff line number Diff line change @@ -29,3 +29,4 @@ In the order of appearance in the commit history:
2929| - | @tianxiaoMCU |
3030| - | @mtnpke |
3131| Omri Sarig | @omrisarig13 |
32+ | Issam E. Maghni | @concatime |
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Python interface for the SEGGER J-Link.
77
88## Requirements
99
10- - [ Python >= 2 .7] ( https://www.python.org/downloads/ )
10+ - [ Python >= 3 .7] ( https://www.python.org/downloads/ )
1111- [ GNU ARM Embedded Toolchain] ( https://launchpad.net/gcc-arm-embedded ) (for functional tests)
1212- [ SEGGER J-Link Tools >= 6.0b] ( https://www.segger.com/downloads/jlink )
1313
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ Installation
1010
1111.. note ::
1212
13- This library is known to support Python versions 2.4 - 2.7. Support for
14- versions higher than 2.7 is not guaranteed.
13+ This library is known to support Python versions 3.7 - 3.9. Support for
14+ versions higher than 3.9 is not guaranteed. As of version 2.0, support for
15+ Python 2.X is no longer available.
1516
1617Basic Installation
1718------------------
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- __version__ = '1.7 .0'
15+ __version__ = '2.0 .0'
1616__title__ = 'pylink'
1717__author__ = 'Square Embedded Software Team'
1818__author_email__ = '[email protected] '
Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ exclude = .eggs
55[metadata]
66description-file = README.md
77
8+ [options]
9+ python_requires = >=3.0
10+
811[bdist_wheel]
9- universal = 1
12+ universal = 0
1013
1114[behave]
1215color = True
Original file line number Diff line number Diff line change @@ -290,5 +290,7 @@ def long_description():
290290 'clean' : CleanCommand ,
291291 'coverage' : CoverageCommand ,
292292 'bddtest' : BDDTestCommand
293- }
293+ },
294+
295+ python_requires = '>=3.0' ,
294296)
You can’t perform that action at this time.
0 commit comments