File tree 4 files changed +22
-7
lines changed
4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,25 @@ jobs:
10
10
- checkout
11
11
- python/load-cache
12
12
- python/install-deps
13
+ - run :
14
+ command : python3 -m pip install --upgrade build
15
+ name : Install PyPA's build tool
13
16
- python/save-cache
14
17
- run :
15
18
command : python -m unittest
16
19
name : Test
17
20
- run :
18
21
command : python -m vquest -h
19
22
name : Try CLI
23
+ - run :
24
+ command : python -m build
25
+ name : Build
26
+ - run :
27
+ command : pip install dist/*.whl
28
+ name : Install from whl
29
+ - run :
30
+ command : which vquest && vquest -h
31
+ name : Try installed CLI
20
32
21
33
workflows :
22
34
main :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.0.7 - 2021-03-17
4
+
5
+ ### Fixed
6
+
7
+ * Removed a duplicate data directory from build/install process ([ #16 ] )
8
+
9
+ [ #16 ] : https://github.com/ressy/vquest/pull/16
10
+
3
11
## 0.0.6 - 2021-03-12
4
12
5
13
### Changed
Original file line number Diff line number Diff line change 14
14
long_description_content_type = "text/markdown" ,
15
15
url = "https://github.com/ressy/vquest" ,
16
16
packages = setuptools .find_packages (),
17
- include_package_data = True ,
18
- package_data = {"vquest" : ["data/tests/*" ]},
19
- data_files = [("data" , [
20
- "vquest/data/defaults.yml" ,
21
- "vquest/data/environment.yml" ,
22
- "vquest/data/options.yml" ])],
17
+ package_data = {"vquest" : ["data/*" ]},
23
18
entry_points = {"console_scripts" : [
24
19
"vquest = vquest.__main__:main" ]},
25
20
classifiers = [
Original file line number Diff line number Diff line change 5
5
See https://www.python.org/dev/peps/pep-0396/
6
6
"""
7
7
8
- __version__ = "0.0.6 "
8
+ __version__ = "0.0.7 "
You can’t perform that action at this time.
0 commit comments