File tree Expand file tree Collapse file tree 4 files changed +22
-7
lines changed
Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,25 @@ jobs:
1010 - checkout
1111 - python/load-cache
1212 - python/install-deps
13+ - run :
14+ command : python3 -m pip install --upgrade build
15+ name : Install PyPA's build tool
1316 - python/save-cache
1417 - run :
1518 command : python -m unittest
1619 name : Test
1720 - run :
1821 command : python -m vquest -h
1922 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
2032
2133workflows :
2234 main :
Original file line number Diff line number Diff line change 11# Changelog
22
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+
311## 0.0.6 - 2021-03-12
412
513### Changed
Original file line number Diff line number Diff line change 1414 long_description_content_type = "text/markdown" ,
1515 url = "https://github.com/ressy/vquest" ,
1616 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/*" ]},
2318 entry_points = {"console_scripts" : [
2419 "vquest = vquest.__main__:main" ]},
2520 classifiers = [
Original file line number Diff line number Diff line change 55See https://www.python.org/dev/peps/pep-0396/
66"""
77
8- __version__ = "0.0.6 "
8+ __version__ = "0.0.7 "
You can’t perform that action at this time.
0 commit comments