-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumping pyproject.toml version number and updating github workflow to…
… work with it.
- Loading branch information
Showing
8 changed files
with
26 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,.venv,.nox,.pytest_cache,.mypy_cache,.vscode |
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 |
---|---|---|
|
@@ -89,6 +89,7 @@ venv/ | |
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
.nox | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
|
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 +1,5 @@ | ||
import importlib.metadata | ||
|
||
__version__ = importlib.metadata.version("folioclient") | ||
|
||
from folioclient.FolioClient import FolioClient |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# mypy.ini | ||
[mypy] | ||
|
||
[mypy-nox.*,pytest] | ||
ignore_missing_imports = True |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "folioclient" | ||
version = "0.60.3" | ||
version = "0.60.4" | ||
authors = ["Theodor Tolstoy <[email protected]>", "Brooks Travis <[email protected]>"] | ||
description = "An API wrapper over the FOLIO LSP API Suite OKAPI." | ||
repository = "https://github.com/FOLIO-FSE/folioclient" | ||
|
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,13 +1,14 @@ | ||
anyio==4.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2023.7.22 ; python_version >= "3.9" and python_version < "4.0" | ||
exceptiongroup==1.1.3 ; python_version >= "3.9" and python_version < "3.11" | ||
anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4.0" | ||
exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" | ||
h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" | ||
httpcore==0.16.3 ; python_version >= "3.9" and python_version < "4.0" | ||
httpx==0.23.3 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.4 ; python_version >= "3.9" and python_version < "4.0" | ||
python-dateutil==2.8.2 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
py-openapi-schema-to-json-schema==0.0.3 ; python_version >= "3.9" and python_version < "4.0" | ||
python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" | ||
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4.0" | ||
rfc3986[idna2008]==1.5.0 ; python_version >= "3.9" and python_version < "4.0" | ||
six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sniffio==1.3.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" | ||
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11" |