Skip to content

Commit

Permalink
Merge pull request #17 from ressy/release-0.0.7
Browse files Browse the repository at this point in the history
Release 0.0.7
  • Loading branch information
ressy authored Mar 18, 2021
2 parents a15f1b5 + ccb8257 commit 956f7d3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,25 @@ jobs:
- checkout
- python/load-cache
- python/install-deps
- run:
command: python3 -m pip install --upgrade build
name: Install PyPA's build tool
- python/save-cache
- run:
command: python -m unittest
name: Test
- run:
command: python -m vquest -h
name: Try CLI
- run:
command: python -m build
name: Build
- run:
command: pip install dist/*.whl
name: Install from whl
- run:
command: which vquest && vquest -h
name: Try installed CLI

workflows:
main:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.0.7 - 2021-03-17

### Fixed

* Removed a duplicate data directory from build/install process ([#16])

[#16]: https://github.com/ressy/vquest/pull/16

## 0.0.6 - 2021-03-12

### Changed
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@
long_description_content_type="text/markdown",
url="https://github.com/ressy/vquest",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={"vquest": ["data/tests/*"]},
data_files=[("data", [
"vquest/data/defaults.yml",
"vquest/data/environment.yml",
"vquest/data/options.yml"])],
package_data={"vquest": ["data/*"]},
entry_points={"console_scripts": [
"vquest = vquest.__main__:main"]},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion vquest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
See https://www.python.org/dev/peps/pep-0396/
"""

__version__ = "0.0.6"
__version__ = "0.0.7"

0 comments on commit 956f7d3

Please sign in to comment.