Skip to content

Commit

Permalink
chore(deps-dev): bump black from 23.1.0 to 24.3.0 (#105)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump black from 23.1.0 to 24.3.0

Bumps [black](https://github.com/psf/black) from 23.1.0 to 24.3.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.1.0...24.3.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: upgrade to python 3.13

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hector Castro <hectcastro@gmail.com>
  • Loading branch information
dependabot[bot] and hectcastro authored Dec 1, 2024
1 parent 9de554e commit 220d890
Show file tree
Hide file tree
Showing 4 changed files with 168 additions and 158 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.13"

- name: Install pipenv and project dependencies
run: |
Expand Down
10 changes: 7 additions & 3 deletions 2021/3/2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ def rating_system(binary_numbers: List, rating_type: RatingType) -> int:
if (
len(
binary_numbers := freq_table[
"1"
if comparison_function(len(freq_table["1"]), len(freq_table["0"]))
else "0"
(
"1"
if comparison_function(
len(freq_table["1"]), len(freq_table["0"])
)
else "0"
)
]
)
== 1
Expand Down
8 changes: 2 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
numpy = "~=1.24"
pandas = "~=2.2"
pandas = "*"
regex = "2023.6.3"
types-dataclasses = "~=0.6"
Cerberus = "~=1.3"
Expand All @@ -17,7 +16,4 @@ flake8 = "~=6.0"
mypy = "~=1.0"

[requires]
python_version = "3.10"

[pipenv]
allow_prereleases = true
python_version = "3.13"
Loading

0 comments on commit 220d890

Please sign in to comment.