Compare commits

...

5 Commits

Author SHA1 Message Date
JustAnotherArchivist 67478f0767
Merge bbea21a0a0 into ab30dbe658 2023-08-23 14:35:37 -07:00
jesopo ab30dbe658 v0.12.1 release 2023-08-17 22:42:39 +00:00
jesopo d370c67373 remove cachetools from requirements.txt 2023-08-17 22:42:00 +00:00
jesopo 0a844bd90d remove freezegun from non-dev requirements 2023-08-17 22:37:48 +00:00
JustAnotherArchivist bbea21a0a0 Add various numeric error codes associated with common IRC commands 2021-10-06 02:06:32 +00:00
5 changed files with 24 additions and 12 deletions

View File

@ -5,7 +5,7 @@ python:
- "3.8"
- "3.9"
install:
- pip3 install mypy types-cachetools -r requirements.txt
- pip3 install mypy types-cachetools -r requirements-dev.txt
before_script:
- pip3 freeze
script:

View File

@ -1 +1 @@
0.12.0
0.12.1

View File

@ -34,6 +34,7 @@ RPL_ENDOFQUIETLIST = "729"
RPL_LOGGEDIN = "900"
RPL_LOGGEDOUT = "901"
ERR_NICKLOCKED = "902"
RPL_SASLSUCCESS = "903"
ERR_SASLFAIL = "904"
ERR_SASLTOOLONG = "905"
@ -53,20 +54,31 @@ RPL_WHOISSECURE = "671"
RPL_AWAY = "301"
RPL_ENDOFWHOIS = "318"
ERR_NONICKNAMEGIVEN = "431"
ERR_ERRONEUSNICKNAME = "432"
ERR_NICKNAMEINUSE = "433"
ERR_BANNICKCHANGE = "435"
ERR_NICKCOLLISION = "436"
ERR_UNAVAILRESOURCE = "437"
ERR_NICKTOOFAST = "438"
ERR_CANTCHANGENICK = "447"
ERR_ALREADYREGISTRED = "462"
ERR_NOSUCHCHANNEL = "403"
ERR_TOOMANYCHANNELS = "405"
ERR_USERONCHANNEL = "443"
ERR_LINKCHANNEL = "470"
ERR_BADCHANNAME = "479"
ERR_BADCHANNEL = "926"
ERR_NOSUCHCHANNEL = "403"
ERR_CANNOTSENDTOCHAN = "404"
ERR_TOOMANYCHANNELS = "405"
ERR_TOOMANYTARGETS = "407"
ERR_NORECIPIENT = "411"
ERR_NOTEXTTOSEND = "412"
ERR_NOTOPLEVEL = "413"
ERR_WILDTOPLEVEL = "414"
ERR_NOTONCHANNEL = "442"
ERR_USERONCHANNEL = "443"
ERR_LINKCHANNEL = "470"
ERR_BADCHANNAME = "479"
ERR_BADCHANNEL = "926"
ERR_NEEDMOREPARAMS = "461"
ERR_BANNEDFROMCHAN = "474"
ERR_INVITEONLYCHAN = "473"

2
requirements-dev.txt Normal file
View File

@ -0,0 +1,2 @@
-r requirements.txt
freezegun ~=1.1.0

View File

@ -1,4 +1,2 @@
cachetools ~=5.0.0
freezegun ~=1.1.0
irctokens ~=2.0.2
pendulum ~=2.1.0
irctokens ~=2.0.2
pendulum ~=2.1.0