Skip to content

#205-Modify Eclipse environment #269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions IDEs/Eclipse/Eclipse-2019-09/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Typee</name>
<comment></comment>
<projects></projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
</natures>
</projectDescription>
9 changes: 9 additions & 0 deletions IDEs/Eclipse/Eclipse-2019-09/.pydevproject
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/${PROJECT_DIR_NAME}/src</path>
<path>/${PROJECT_DIR_NAME}</path>
</pydev_pathproperty>
</pydev_project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you wish to contribute, just contact main administrator
eventually get a response and will enthousiastically be added to the
contributors list.
Current developments are in _Python 3.7_, based on _Anaconda 3_, with
_Eclipse 2019-06_ framework and _PyDev_ plug-in. Windows is currently used also
_Eclipse 2019-09_ framework and _PyDev_ plug-in. Windows is currently used also
for these developments. So, if you get Linux expertise you're welcome!


Expand Down
6 changes: 3 additions & 3 deletions develoment-framework.md → development-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ To modify Typee, you will need to install:
- and Anaconda 3, a complete Python 3.x environment with the Python interpreter.


## Eclipse Photon (4.8)
## Eclipse 2019-09

[Eclipse](http://www.eclipse.org) is an Open Source development framework from
Eclipse Foundation. The last released versions of this framework, dedicated to
your Operating System and the CPU architecture (32- vs. 64-bits) are directly
available for download here:
[http://www.eclipse.org/downloads/](http://www.eclipse.org/downloads/)

The one we use for Typee programmation is Eclipse Photon (4.8 - June 2018).
The one we use for Typee programmation is Eclipse 2019-09.
So, this is the recommended version of Eclipse to use. If you do so, you will
take immediate benefit of the two files `.project` and `.pydevproject` that
are provided at the root of the Typee repository.
Expand All @@ -52,7 +52,7 @@ Installation is really straightforward. You should not encounter any kind of
issue to install it.


## Java 8 (8.192)
## Java 8 (8.0_221)

Mind this gap. Eclipse framework is developed in Java. You definitively need
to install a Java Run Time (JRT) on your machine to be able to run Eclipse. If
Expand Down
2 changes: 1 addition & 1 deletion src/FrontEnd/Parser/fe_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class FEParser:
Syntaxic Intermediate Code that will be then analyzed by the
Typee Front-End Elaborator.

Currently, implements version 9.1 of Typee Grammar Specification.
Currently, implements version 10 of Typee Grammar Specification.
"""

#-------------------------------------------------------------------------
Expand Down