File tree 4 files changed +7
-9
lines changed
4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 39
39
run : |
40
40
python -m pip install wheel
41
41
python -m pip install --upgrade pip
42
- python -m pip install fluent.syntax==${{ matrix.fluent-syntax }}
42
+ python -m pip install fluent.syntax==${{ matrix.fluent-syntax }} six
43
43
python -m pip install .
44
44
- name : Test
45
45
working-directory : ./fluent.runtime
Original file line number Diff line number Diff line change 1
- from setuptools import setup , find_namespace_packages
2
- import os
1
+ from os import path
2
+ from setuptools import setup
3
3
4
- this_directory = os . path .abspath (os . path .dirname (__file__ ))
5
- with open (os . path .join (this_directory , 'README.rst' ), 'rb' ) as f :
4
+ this_directory = path .abspath (path .dirname (__file__ ))
5
+ with open (path .join (this_directory , 'README.rst' ), 'rb' ) as f :
6
6
long_description = f .read ().decode ('utf-8' )
7
7
8
8
25
25
'Programming Language :: Python :: 3.9' ,
26
26
'Programming Language :: Python :: 3 :: Only' ,
27
27
],
28
- packages = find_namespace_packages (include = ['fluent.*' ]),
28
+ packages = ['fluent.runtime' ],
29
+ package_data = {'fluent.runtime' : ['py.typed' ]},
29
30
# These should also be duplicated in tox.ini and /.github/workflows/fluent.runtime.yml
30
31
install_requires = [
31
32
'fluent.syntax>=0.17,<0.20' ,
32
33
'attrs' ,
33
34
'babel' ,
34
35
'pytz' ,
35
- 'six' ,
36
36
],
37
37
test_suite = 'tests' ,
38
38
)
Original file line number Diff line number Diff line change @@ -12,12 +12,10 @@ deps =
12
12
attrs ==19.1.0
13
13
babel ==2.7.0
14
14
pytz ==2019.2
15
- six ==1.12.0
16
15
syntax: .
17
16
commands = ./runtests.py
18
17
19
18
[testenv:latest]
20
19
basepython = python3
21
20
deps =
22
21
.
23
- six
You can’t perform that action at this time.
0 commit comments