Skip to content

Commit

Permalink
Rename package to requestmodel
Browse files Browse the repository at this point in the history
  • Loading branch information
foarsitter committed Sep 21, 2023
1 parent f4da678 commit 3771f21
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{sys.executable} -m pip install nox-poetry"""
raise SystemExit(dedent(message)) from None

package = "fastclient"
package = "requestmodel"
python_versions = ["3.11", "3.10", "3.9", "3.8", "3.12"]
nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tests = ["tests", "*/tests"]

[tool.coverage.run]
branch = true
source = ["fastclient", "tests"]
source = ["requestmodel", "tests"]

[tool.coverage.report]
show_missing = true
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Test suite for the fastclient package."""
"""Test suite for the requestmodel package."""
2 changes: 1 addition & 1 deletion tests/locatieserver/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from fastapi import Query
from typing_extensions import Annotated

from fastclient import RequestModel
from requestmodel import RequestModel

from .models import LookupResponse

Expand Down

0 comments on commit 3771f21

Please sign in to comment.