Coder Social home page Coder Social logo

Comments (2)

jmlarson1 avatar jmlarson1 commented on July 16, 2024

The issue seems to arise from the block of code starting at line 28 in setup.py. The current commithash taken from git is b'3634cc7'. Therefore, either the string should be parsed to remove the b and ticks, or when it is written to Lib/version.py, there shouldn't be any ticks around the %s.

from forthon.

dpgrote avatar dpgrote commented on July 16, 2024

Thanks for the notification. This is now fixed.
Dave

Sent from my iPhone

On Apr 1, 2015, at 1:31 PM, jmlarson1 [email protected] wrote:

I am unable to build Forthon using Python 3.3.2. The relevant errors are:

Can't parse build/lib/Forthon/version.py: ParseError: bad input: type=2, value='3634', context=('', (2, 16))
and
File "/home/jlarson/.local/lib/python3.3/site-packages/Forthon/version.py", line 2
gitversion = 'b'3634cc7''
^
SyntaxError: invalid syntax

The complete output is below:

[jlarson@blogin2 software]$ git clone https://github.com/dpgrote/Forthon.git
Initialized empty Git repository in /fusion/gpfs/home/jlarson/software/Forthon/.git/
remote: Counting objects: 2505, done.
remote: Total 2505 (delta 0), reused 0 (delta 0), pack-reused 2505
Receiving objects: 100% (2505/2505), 445.63 KiB, done.
Resolving deltas: 100% (1719/1719), done.
[jlarson@blogin2 software]$ cd Forthon/
[jlarson@blogin2 Forthon]$ python setup.py install --user
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/Forthon
copying Lib/ForthonTimer.py -> build/lib/Forthon
copying Lib/Forthon_builder.py -> build/lib/Forthon
copying Lib/Forthon_options.py -> build/lib/Forthon
copying Lib/Forthon.py -> build/lib/Forthon
copying Lib/_init.py -> build/lib/Forthon
copying Lib/cfinterface.py -> build/lib/Forthon
copying Lib/compilers.py -> build/lib/Forthon
copying Lib/fvars.py -> build/lib/Forthon
copying Lib/interfaceparser.py -> build/lib/Forthon
copying Lib/preprocess.py -> build/lib/Forthon
copying Lib/wrappergen_derivedtypes.py -> build/lib/Forthon
copying Lib/wrappergenerator.py -> build/lib/Forthon
copying Lib/version.py -> build/lib/Forthon
Skipping implicit fixer: buffer
Skipping implicit fixer: idioms
Skipping implicit fixer: set_literal
Skipping implicit fixer: ws_comma
Can't parse build/lib/Forthon/version.py: ParseError: bad input: type=2, value='3634', context=('', (2, 16))
running build_scripts
creating build/scripts-3.3
copying and adjusting Forthon3 -> build/scripts-3.3
changing mode of build/scripts-3.3/Forthon3 from 644 to 755
running install_lib
copying build/lib/Forthon/ForthonTimer.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/Forthon_builder.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/Forthon_options.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/Forthon.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/_init.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/cfinterface.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/compilers.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/fvars.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/interfaceparser.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/preprocess.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/wrappergen_derivedtypes.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/wrappergenerator.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying build/lib/Forthon/version.py -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/ForthonTimer.py to ForthonTimer.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/Forthon_builder.py to Forthon_builder.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/Forthon_options.py to Forthon_options.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/Forthon.py to Forthon.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/__init.py to init.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/cfinterface.py to cfinterface.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/compilers.py to compilers.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/fvars.py to fvars.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/interfaceparser.py to interfaceparser.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/preprocess.py to preprocess.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/wrappergen_derivedtypes.py to wrappergen_derivedtypes.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/wrappergenerator.py to wrappergenerator.cpython-33.pyc
byte-compiling /home/jlarson/.local/lib/python3.3/site-packages/Forthon/version.py to version.cpython-33.pyc
File "/home/jlarson/.local/lib/python3.3/site-packages/Forthon/version.py", line 2
gitversion = 'b'3634cc7''
^
SyntaxError: invalid syntax

running install_scripts
copying build/scripts-3.3/Forthon3 -> /home/jlarson/.local/bin
changing mode of /home/jlarson/.local/bin/Forthon3 to 755
running install_data
copying License.txt -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying Src/Forthon.h -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
copying Src/Forthon.c -> /home/jlarson/.local/lib/python3.3/site-packages/Forthon
running install_egg_info
Removing /home/jlarson/.local/lib/python3.3/site-packages/Forthon-0.8.15-py3.3.egg-info
Writing /home/jlarson/.local/lib/python3.3/site-packages/Forthon-0.8.15-py3.3.egg-info


Reply to this email directly or view it on GitHub.

from forthon.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.