Skip to content

Commit

Permalink
docs: updates for v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cofiem committed Oct 2, 2022
1 parent cb6be9f commit 03caac1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change log

## [v0.0.3](https://github.com/anotherbyte-net/gather-vision/compare/v0.0.2...v0.0.3)

- improve plugin api, listing, and tests (#11)
- Change dependencies to use pip requirements compatibility format.

## [v0.0.2](https://github.com/anotherbyte-net/gather-vision/compare/v0.0.1...v0.0.2)

- Added WebData base class
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ source .venv-test/bin/activate
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade -r requirements.txt

GATHER_VISION_VERSION='0.0.2'
GATHER_VISION_VERSION='0.0.3'
pip install --index-url https://test.pypi.org/simple/ --no-deps gather-vision==$GATHER_VISION_VERSION
# or
pip install dist/gather_vision-$GATHER_VISION_VERSION-py3-none-any.whl
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2
0.0.3
13 changes: 11 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ description = "Obtain, extract, organise, and store information. "
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from gather_vision.cli import main
from helpers import ExamplePlugin

expected_version = "0.0.2"
expected_version = "0.0.3"

if sys.version_info.minor >= 10:
help_phrase_options = "options:"
Expand Down

0 comments on commit 03caac1

Please sign in to comment.