Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: agrc -> ugrc #122

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if: github.ref == 'refs/heads/main' && needs.release-please.outputs.release_created
environment:
name: prod
url: https://pypi.org/project/agrc-sweeper/
url: https://pypi.org/project/ugrc-sweeper/
permissions:
id-token: write

Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# agrc-sweeper [![PyPI version](https://badge.fury.io/py/agrc-sweeper.svg)](https://badge.fury.io/py/agrc-sweeper)[![Push Events](https://github.com/agrc/sweeper/actions/workflows/push.yml/badge.svg)](https://github.com/agrc/sweeper/actions/workflows/push.yml)
# ugrc-sweeper [![PyPI version](https://badge.fury.io/py/ugrc-sweeper.svg)](https://badge.fury.io/py/ugrc-sweeper)[![Push Events](https://github.com/agrc/sweeper/actions/workflows/push.yml/badge.svg)](https://github.com/agrc/sweeper/actions/workflows/push.yml)

The data cleaning service.

Expand Down Expand Up @@ -106,7 +106,7 @@ A normalized string representing the entire address that was passed into the con
1. activate environment
- `activate sweeper`
1. install sweeper
- `pip install agrc-sweeper`
- `pip install ugrc-sweeper`
1. Optionally duplicate `config.sample.json` as `config.json` in the folder where you will run sweeper.

> [!CAUTION]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import find_packages, setup

setup(
name="agrc-sweeper",
name="ugrc-sweeper",
version="2.0.0",
license="MIT",
description="CLI tool for making good data",
Expand Down
6 changes: 3 additions & 3 deletions src/sweeper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

def main():
"""Main entry point for program. Parse arguments and pass to sweeper modules."""
args = docopt(__doc__, version=pkg_resources.require("agrc-sweeper")[0].version)
args = docopt(__doc__, version=pkg_resources.require("ugrc-sweeper")[0].version)

Check warning on line 46 in src/sweeper/__main__.py

View check run for this annotation

Codecov / codecov/patch

src/sweeper/__main__.py#L46

Added line #L46 was not covered by tests

log = setup_logging(args["--save-report"], args["--scheduled"])

Expand All @@ -57,8 +57,8 @@
"to_addresses": config.get_config("TO_ADDRESSES"),
"api_key": config.get_config("SENDGRID_API_KEY"),
},
client_name="agrc-sweeper",
client_version=pkg_resources.require("agrc-sweeper")[0].version,
client_name="ugrc-sweeper",
client_version=pkg_resources.require("ugrc-sweeper")[0].version,
)
)

Expand Down