Skip to content

Commit 956f7d3

Browse files
authored
Merge pull request #17 from ressy/release-0.0.7
Release 0.0.7
2 parents a15f1b5 + ccb8257 commit 956f7d3

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

.circleci/config.yml

+12
Original file line numberDiff line numberDiff 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

2133
workflows:
2234
main:

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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

setup.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@
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=[

vquest/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
See https://www.python.org/dev/peps/pep-0396/
66
"""
77

8-
__version__ = "0.0.6"
8+
__version__ = "0.0.7"

0 commit comments

Comments
 (0)