forked from unitedstates/python-us
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Linting fixes * remove duplicate test test_dc() * update packages * update gh workflow * update documentation * fix version numbers --------- Co-authored-by: Paul Hawk <[email protected]>
- Loading branch information
Showing
9 changed files
with
292 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
setup( | ||
name="us", | ||
version="3.0.0", | ||
version="3.1.1", | ||
author="Jeremy Carbaugh", | ||
author_email="[email protected]", | ||
url="https://github.com/unitedstates/python-us", | ||
|
@@ -13,12 +13,15 @@ | |
license="BSD", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=["jellyfish==0.7.2"], | ||
install_requires=["jellyfish==0.11.2"], | ||
entry_points={"console_scripts": ["states = us.cli.states:main"]}, | ||
platforms=["any"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
"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", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from .states import ( | ||
STATES, | ||
STATES_CONTIGUOUS, | ||
STATES_CONTINENTAL, | ||
TERRITORIES, | ||
STATES_AND_TERRITORIES, | ||
OBSOLETE, | ||
) | ||
from .states import ( # noqa | ||
STATES, # noqa | ||
STATES_CONTIGUOUS, # noqa | ||
STATES_CONTINENTAL, # noqa | ||
TERRITORIES, # noqa | ||
STATES_AND_TERRITORIES, # noqa | ||
OBSOLETE, # noqa | ||
) # noqa | ||
from .unitedstatesofamerica import * # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters