Skip to content

Commit

Permalink
Merge pull request #44 from ferraith/feature/python37-support
Browse files Browse the repository at this point in the history
Added Python 3.7 support
  • Loading branch information
ferraith committed Oct 6, 2018
2 parents 07fdaaa + 60361ab commit dcb0b8c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
language: python

python:
- '3.5'
- '3.6'
matrix:
include:
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true

install:
- python -m pip install -U pip setuptools
Expand Down Expand Up @@ -34,7 +38,7 @@ deploy:
on:
repo: ferraith/setuptools-antlr
tags: true
python: '3.6'
python: '3.7'

- provider: pypi
user: ferraith
Expand All @@ -46,4 +50,4 @@ deploy:
on:
repo: ferraith/setuptools-antlr
tags: true
python: '3.6'
python: '3.7'
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Python 3.7 support.
- Equality comparison and hashing of grammars.

## [0.3.0] - 2018-07-29
### Changed
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7'
]
)

0 comments on commit dcb0b8c

Please sign in to comment.