Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
da8ac9f
Changed docs command
Bernardo-MG Jan 12, 2018
37c8a7f
Merge remote-tracking branch 'origin/develop' into develop
Bernardo-MG Jan 12, 2018
a81964d
Merge remote-tracking branch 'remotes/origin/master' into develop
Bernardo-MG Jan 12, 2018
9482581
Updated info about building docs
Bernardo-MG Jan 12, 2018
3cacf68
Fixed Sphinx build path
Bernardo-MG Jan 12, 2018
edd6169
Updated scripts
Bernardo-MG Jan 12, 2018
3d83391
Fixed script name
Bernardo-MG Jan 12, 2018
9228ca9
Updated dependencies
Bernardo-MG Apr 20, 2019
863d9cc
Updated gitignore
Bernardo-MG Apr 20, 2019
3c5778a
Docs are only tested when deployed
Bernardo-MG Apr 20, 2019
ec94b29
Changed URL
Bernardo-MG Apr 20, 2019
baaf6eb
Disabled link check
Bernardo-MG Apr 20, 2019
323fef5
Updated dependencies
Bernardo-MG Mar 8, 2020
c23df9f
Added ANTLR grammar
Bernardo-MG Mar 8, 2020
c0a66d0
Added ANTLR grammar
Bernardo-MG Mar 8, 2020
82bfb73
Corrected grammar
Bernardo-MG Mar 8, 2020
62c7a02
Corrected grammar
Bernardo-MG Mar 8, 2020
5395857
Corrections to parser
Bernardo-MG Mar 8, 2020
422ac51
Registered listener
Bernardo-MG Mar 8, 2020
79d5b8b
First test at parsing dice
Bernardo-MG Mar 8, 2020
7f34320
Changed Python versions
Bernardo-MG Mar 8, 2020
138c04c
Using older dependency
Bernardo-MG Mar 8, 2020
abf1658
Updated dependencies
Bernardo-MG Mar 22, 2020
da2ba8c
Updated dependencies
Bernardo-MG Mar 22, 2020
cf2943d
Using older dependency
Bernardo-MG Mar 22, 2020
042be3f
Updated Travis config
Bernardo-MG Mar 22, 2020
c7eb546
Merge remote-tracking branch 'remotes/origin/develop' into antlr4
Bernardo-MG Mar 22, 2020
9be6473
Updated scripts
Bernardo-MG Mar 22, 2020
1b0ef15
Updated Python versions
Bernardo-MG Mar 22, 2020
652ffab
Corrected tox config
Bernardo-MG Mar 22, 2020
e82be1a
Added logs and the parser returns the parsed expression
Bernardo-MG Mar 22, 2020
99dc532
Numbers are parsed
Bernardo-MG Mar 22, 2020
ab604d4
Added binary operation parsing method
Bernardo-MG Mar 22, 2020
e613787
Binary operations are parsed
Bernardo-MG Mar 22, 2020
d5637d6
Numbers are parsed
Bernardo-MG Mar 22, 2020
24338c8
Operation results are parsed
Bernardo-MG Mar 22, 2020
d4fc02f
Corrected parsing
Bernardo-MG Mar 22, 2020
b623d36
Disabled tests
Bernardo-MG Mar 22, 2020
df7db09
Merge pull request #18 from Bernardo-MG/antlr4
Bernardo-MG Mar 22, 2020
4857999
Removed test runnable class
Bernardo-MG Mar 22, 2020
3699e12
Raised version
Bernardo-MG Mar 22, 2020
029f328
Corrected readme
Bernardo-MG Mar 22, 2020
5c30f88
Updated readme
Bernardo-MG Mar 22, 2020
4698f41
Corrected docs
Bernardo-MG Mar 22, 2020
0ad019a
Merge branch 'antlr4' into develop
Bernardo-MG Mar 22, 2020
2ea25ec
Corrected docs
Bernardo-MG Mar 22, 2020
99ca5fd
Corrected docs
Bernardo-MG Mar 22, 2020
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated Travis config
  • Loading branch information
Bernardo-MG committed Mar 22, 2020
commit 042be3fcdbd48dc7d967632b49bae07f2b96e934
13 changes: 4 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@

# Using Python for the project
language: python
python:
- "3.4"
- "3.5"
# Python 3.6 is set to test and deploy the docs in the configuration matrix
#- "3.6"
# PyPy currently is not working with the required dependencies
#- "pypy"
#- "pypy3"
python:
- "3.7"
- "3.8"
matrix:
include:
# Tests and deploys docs, also runs coverage report
Expand All @@ -23,7 +18,7 @@ addons:

before_install:
# Gets scripts
- git clone -b v1.2.1 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts
- git clone -b v1.2.2 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts
# Sets scripts as executable
- chmod -R +x ~/.scripts/*
# Prepares CI environment
Expand Down