Skip to content

Commit 8ae06a1

Browse files
committed
fluent.runtime 0.2
Pick up fluent.syntax 0.17 as requirement, and release something with Fluent 1.0 Syntax. Also more dependency updates.
1 parent 687fca7 commit 8ae06a1

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python:
1010
- "nightly"
1111
env:
1212
global:
13-
- FLUENT_RUNTIME_DEFAULT_DEPS="fluent.syntax==0.15 attrs==19.1.0 babel==2.6.0 pytz==2018.9 six==1.12.0"
13+
- FLUENT_RUNTIME_DEFAULT_DEPS="fluent.syntax==0.17 attrs==19.1.0 babel==2.7.0 pytz==2019.2 six==1.12.0"
1414
- FLUENT_SYNTAX_DEFAULT_DEPS="six"
1515
matrix:
1616
- PACKAGE=fluent.syntax

fluent.runtime/CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Changelog
22
=========
33

4-
fluent.runtime development version (unreleased)
4+
fluent.runtime 0.2
55
-----------------------------------------------
66

7-
* Support for Fluent spec 0.8 (``fluent.syntax`` 0.10), including parameterized
7+
* Support for Fluent spec 1.0 (``fluent.syntax`` 0.17), including parameterized
88
terms.
99

1010
fluent.runtime 0.1 (January 21, 2019)

fluent.runtime/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
setup(name='fluent.runtime',
6-
version='0.1',
6+
version='0.2',
77
description='Localization library for expressive translations.',
88
long_description='See https://github.com/projectfluent/python-fluent/ for more info.',
99
author='Luke Plant',
@@ -21,7 +21,7 @@
2121
packages=['fluent', 'fluent.runtime'],
2222
# These should also be duplicated in tox.ini and ../.travis.yml
2323
install_requires=[
24-
'fluent.syntax>=0.14,<=0.16',
24+
'fluent.syntax>=0.17,<0.18',
2525
'attrs',
2626
'babel',
2727
'pytz',

fluent.runtime/tox.ini

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# This config is for local testing. It should be duplicated into .travis.yml
22
[tox]
3-
envlist = {py27,py35,py36,py37,pypy,pypy3}-syntax0.15, py36-syntax0.14, latest
3+
envlist = {py27,py35,py36,py37,pypy,pypy3}-syntax0.17, py36-syntax0.17, latest
44
skipsdist=True
55

66
[testenv]
77
setenv =
88
PYTHONPATH = {toxinidir}
99
deps =
10-
syntax0.15: fluent.syntax==0.15
11-
syntax0.14: fluent.syntax==0.14
10+
syntax0.17: fluent.syntax==0.17
1211
attrs==19.1.0
13-
babel==2.6.0
14-
pytz==2018.9
12+
babel==2.7.0
13+
pytz==2019.2
1514
six==1.12.0
1615
commands = ./runtests.py
1716

@@ -22,7 +21,7 @@ deps =
2221
# It's tempting to use '.' here to get 'pip install .'
2322
# Unfortunately it is super slow: https://github.com/pypa/pip/issues/2195
2423
# Instead we copy-paste from setup.py
25-
fluent.syntax>=0.14,<=0.16
24+
fluent.syntax>=0.17,<0.18
2625
attrs
2726
babel
2827
pytz

0 commit comments

Comments
 (0)