Skip to content

Commit af2f41c

Browse files
author
Kirill V. Lyadvinsky
committed
python3 notes
1 parent b56f64b commit af2f41c

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
test:
44
python3 -m unittest discover -v
55

6-
#init:
7-
# pip install -r requirements.txt
8-
96
clean:
107
rm -rf test/*.pyc
118
rm -rf zxtools/*.pyc

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Originally the tools were written to simplify the following workflow:
1212

1313
But you can use them in the way you need. And it's very easy to use: download the package, run ``setup.py`` (or install via ``pip install zxtools``), invoke in the following way::
1414

15-
$ python -m zxtools.hobeta strip input.hobetta result.zeus
16-
$ python -m zxtools.zeus2txt result.zeus listing.txt
15+
$ python3 -m zxtools.hobeta strip input.hobetta result.zeus
16+
$ python3 -m zxtools.zeus2txt result.zeus listing.txt
1717

1818
NOTE: You need Python 3 to use this package.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
# vim: set fileencoding=utf-8 :
33

44
from setuptools import setup, find_packages
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='zxtools',
12-
version='1.0.11',
12+
version='1.0.15',
1313
description='Tools to manipulate files from ZX Spectrum',
1414
long_description=readme,
1515
author='Kirill V. Lyadvinsky',

0 commit comments

Comments
 (0)