Skip to content

Commit

Permalink
Fix error in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Jul 16, 2023
1 parent 3554e61 commit eab5640
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Do not hesitate to report issues in the Github repository.

## Contributing

See [contributing](https://github.com/romainsacchi/carculator/blob/master/CONTRIBUTING.md).
See [contributing](https://github.com/romainsacchi/polyviz/blob/master/CONTRIBUTING.md).

## License

Expand Down
2 changes: 1 addition & 1 deletion polyviz.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Do not hesitate to report issues in the Github repository.

## Contributing

See [contributing](https://github.com/romainsacchi/carculator/blob/master/CONTRIBUTING.md).
See [contributing](https://github.com/romainsacchi/polyviz/blob/master/CONTRIBUTING.md).

## License

Expand Down
2 changes: 1 addition & 1 deletion polyviz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
PolyViz init
"""
__version__ = (1, 0, 0)
__version__ = (1, 0, 1)

__all__ = (
"sankey",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
this_directory = Path(__file__).parent
README = (this_directory / "README.md").read_text()

for dirpath, dirnames, filenames in os.walk("carculator"):
for dirpath, dirnames, filenames in os.walk("polyviz"):
# Ignore dirnames that start with '.'
if "__init__.py" in filenames:
pkg = dirpath.replace(os.path.sep, ".")
Expand All @@ -34,7 +34,7 @@ def package_files(directory):

setup(
name="polyviz",
version="1.0.0",
version="1.0.1",
packages=packages,
author="Romain Sacchi <[email protected]>",
license=open("LICENSE").read(),
Expand Down

0 comments on commit eab5640

Please sign in to comment.