Skip to content

Commit

Permalink
v3.2.2 minor patch to fix doc errors and hopefully fix resources path
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Feb 24, 2024
1 parent d55bf2a commit ea2aaa9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Emojis for the following are chosen based on [gitmoji](https://gitmoji.dev/).
- Scribe-Data now outputs an SQLite table that has keys for target languages for each base language. -->
<!-- - English has been added to the data ETL process. -->

## Scribe-Data 3.2.2

- Minor fixes to documentation index and file docstrings to fix errors.
- Revert change to package path definition to hopefully register the resources directory.

## Scribe-Data 3.2.1

### ♻️ Code Refactoring
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "Scribe-Data developers"

# The full version, including alpha/beta/rc tags
release = "3.2.1"
release = "3.2.2"


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
:height: 150
:align: center
:target: https://github.com/scribe-org/Scribe-Data

============

|platform| |rtd| |issues| |language| |pypi| |pypistatus| |license| |coc| |mastodon| |matrix| |codestyle|
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
name="scribe-data",
packages=find_packages(where="src"),
package_dir={"": "src"},
version="3.2.1",
version="3.2.2",
author="Andrew Tavis McAllister",
author_email="[email protected]",
classifiers=[
Expand Down
4 changes: 2 additions & 2 deletions src/scribe_data/checkquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
Contents:
QueryFile Class
load,
__repr__,
__repr__
QueryExecutionException Class
__init__,
__str__,
__str__
ping,
all_queries,
changed_queries,
Expand Down
2 changes: 1 addition & 1 deletion src/scribe_data/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _load_json(package_path: str, file_name: str, root: str):


_languages = _load_json(
package_path="scribe_data/resources",
package_path="scribe_data.resources",
file_name="language_meta_data.json",
root="languages",
)
Expand Down

0 comments on commit ea2aaa9

Please sign in to comment.