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

drop setup.py #1227

Merged
merged 2 commits into from
Nov 27, 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
3 changes: 3 additions & 0 deletions changelog/1227.contributor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Dropped the use of ``setup.py``, given the already configured
`PEP 517 <https://peps.python.org/pep-0517/>`__ ``build-backend`` with
`setuptools <https://github.com/pypa/setuptools>`__. (:user:`bjlittle`)
13 changes: 0 additions & 13 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/geovista/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from click_default_group import DefaultGroup
import lazy_loader as lazy

from ._version import version as __version__
from . import __version__
bjlittle marked this conversation as resolved.
Show resolved Hide resolved
from .cache import CACHE, pooch_mute
from .common import get_modules
from .config import resources
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ platform =
linux
passenv =
GEOVISTA_DOWNLOAD
CI
setenv =
linkcheck: BUILDER = linkcheck
doctest: BUILDER = doctest
CI = true
GEOVISTA_POOCH_MUTE = true
usedevelop =
true
Expand Down
Loading