Skip to content

Commit c6cb92a

Browse files
Atualização do arquivo de dependências (#516)
* Todas as dependências adicionadas ao requirements-dev.txt * Data futura alterada de 2150 para 2100 --------- Co-authored-by: Camila Maia <[email protected]>
1 parent 736fd76 commit c6cb92a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

requirements-dev.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
ruff>=0.5.0,<0.7.0
1+
holidays>=0.58
2+
num2words==0.5.13
23
coverage>=7.2.7
4+
ruff>=0.5.0,<0.7.0

tests/test_date_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def test_ano_bissexto(self):
6060
def test_data_passada_futura(self):
6161
# Teste de data passada e futura
6262
self.assertTrue(is_holiday(datetime(2023, 1, 1))) # Ano anterior
63-
self.assertTrue(is_holiday(datetime(2150, 12, 25))) # Ano futuro
63+
self.assertTrue(is_holiday(datetime(2100, 12, 25))) # Ano futuro
6464
self.assertFalse(
65-
is_holiday(datetime(2250, 1, 2))
65+
is_holiday(datetime(2100, 1, 2))
6666
) # Dia normal em ano futuro
6767

6868
def test_data_sem_uf(self):

0 commit comments

Comments
 (0)