Skip to content

Commit bc5e191

Browse files
Merge pull request #27 from iamsauravsharma/change-dev-dependencies
chore: change dep dependencies
2 parents 0db32f0 + 5147072 commit bc5e191

File tree

14 files changed

+529
-154
lines changed

14 files changed

+529
-154
lines changed

.github/workflows/deploy_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.11"
16+
python-version: "3.12"
1717
- name: Install Poetry
1818
uses: snok/install-poetry@v1
1919
with:
20-
version: 1.7.1
20+
version: 1.8.1
2121
virtualenvs-create: true
2222
virtualenvs-in-project: true
2323
- name: Publish

.github/workflows/python_app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install Poetry
3232
uses: snok/install-poetry@v1
3333
with:
34-
version: 1.7.1
34+
version: 1.8.1
3535
virtualenvs-create: true
3636
virtualenvs-in-project: true
3737
- name: Install dependencies

advent_of_code_py/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
advent of code helper module. Provide CLI and library to submit and solve advent of
33
code problems easily.
44
"""
5+
56
__version__ = "0.4.0"
67

78
from .initializer import Initializer

advent_of_code_py/cache_file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module which performs cache file related operation stored over CACHE_DIR of OS"""
2+
23
import importlib
34
import os
45
import time

advent_of_code_py/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Main CLI for advent-of-code helper tool"""
2+
23
from typing import List
34

45
import click

advent_of_code_py/config_file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module to perform config file related operation"""
2+
23
import json
34
import os
45
from pathlib import Path

advent_of_code_py/initializer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
initializer module which defines Initializer class for initializing advent of code
33
function runner
44
"""
5+
56
from __future__ import annotations
67

78
import inspect

advent_of_code_py/puzzle.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""module used for defining puzzle decorator for submitting or solving problem"""
2+
23
from enum import Enum
34
from typing import Callable, List, Optional, TypeVar
45

@@ -76,7 +77,7 @@ def __call__(self, input: Optional[str] = None):
7677
self.day,
7778
self.part,
7879
answer,
79-
"\u274C",
80+
"\u274c",
8081
message,
8182
)
8283
)

advent_of_code_py/runner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Advent of code runner for creating CLI for solution for easy execution"""
2+
23
import click
34

45

advent_of_code_py/server_action.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""module which performs server related actions such as submitting and downloading"""
2+
23
import requests
34

45
from .cache_file import (

0 commit comments

Comments
 (0)