Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #17 from lincbrain/ak-name
Browse files Browse the repository at this point in the history
Add naming suffix to circumvent PyPI historical sem var history
  • Loading branch information
aaronkanzer authored Jan 30, 2024
2 parents 01b7bee + 838dd51 commit 9e97f9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lincbrain/dandiapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ def paginate(
if params is None:
params = {}
params["page_size"] = page_size

resp = self.get(path, params=params, json_resp=False)
r = resp.json()
if r["next"] is not None:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import versioneer

setup_kw = {
"version": versioneer.get_version(),
"version": f"{versioneer.get_version()}_linc",
"cmdclass": versioneer.get_cmdclass(),
}
except ImportError:
Expand Down

0 comments on commit 9e97f9d

Please sign in to comment.