Skip to content

Commit

Permalink
Merge pull request #3 from jsenecal/develop
Browse files Browse the repository at this point in the history
Bump version to v0.1.3
  • Loading branch information
jsenecal authored Mar 1, 2023
2 parents 9924365 + 077f0c5 commit 12997d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyregrws"
version = "0.1.2"
version = "0.1.3"
description = "Python library to retrieve and modify records within ARIN's database through their Reg-RWS service"
authors = ["Jonathan Senecal <contact@jonathansenecal.com>"]
homepage = "https://github.com/jsenecal/pyregrws"
Expand Down Expand Up @@ -29,7 +29,7 @@ pydantic-xml = { extras = ["lxml"], version = "^0.5.0" }
[tool.poetry.group.dev.dependencies]
pytest-xdist = "^3.1.0"
black = { version = "^23.1.0", allow-prereleases = true }
ipython = "^8.8.0"
ipython = "^8.10.0"
pytest = "^7.2.0"
xmldiff = "^2.4"
lxml = "^4.9.2"
Expand Down
2 changes: 1 addition & 1 deletion regrws/models/tickets.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ class Ticket(BaseModel, tag="ticket", nsmap=NSMAP):


class TicketRequest(BaseModel, tag="ticketedRequest", nsmap=NSMAP):
ticket: Ticket = element(tag="ticket")
ticket: Optional[Ticket] = element(tag="ticket")
net: Optional[Net] = element(tag="net")

0 comments on commit 12997d8

Please sign in to comment.