Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Readme #116

Merged
merged 36 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
86cb317
use python-ipware
un33k Nov 22, 2023
de8a5e4
format
un33k Nov 22, 2023
8d2b3e6
logic
un33k Nov 22, 2023
549363d
format
un33k Nov 22, 2023
82cb843
readme
un33k Nov 22, 2023
ad8b2f7
add more tests
un33k Nov 22, 2023
8c9dcee
format
un33k Nov 22, 2023
7b89b79
omit version in coverage
un33k Nov 22, 2023
2ef8573
changelog
un33k Nov 22, 2023
6e4fc90
ci/cd
un33k Nov 22, 2023
94a2e83
coverall exclude
un33k Nov 22, 2023
c7e409a
omit coverall
un33k Nov 22, 2023
4f71957
omit coverall
un33k Nov 22, 2023
ff256e9
omit coverall revert
un33k Nov 22, 2023
5851f88
toml
un33k Nov 22, 2023
bd4194d
add deps
un33k Nov 23, 2023
9629ca9
add deps
un33k Nov 23, 2023
9056776
django install order
un33k Nov 23, 2023
c191689
revert toml
un33k Nov 23, 2023
f7cee2b
format
un33k Nov 23, 2023
1bcfebe
format
un33k Nov 23, 2023
c8e0dbc
setup
un33k Nov 23, 2023
186b9cc
actions
un33k Nov 23, 2023
0fb6bdc
Merge branch 'master' into dev
un33k Nov 23, 2023
4e8d16e
Merge branch 'master' into dev
un33k Nov 29, 2023
f400693
Merge branch 'master' into dev
un33k Feb 4, 2024
2430b9c
Add types for get_client_ip parameters (#110)
federicobond Feb 4, 2024
a831870
up version 6.0.4
un33k Feb 4, 2024
25b2138
up version ci action
un33k Feb 4, 2024
73b448b
Merge branch 'ci' into dev
un33k Feb 4, 2024
3993ee9
coverallapp
un33k Feb 4, 2024
d0c7b40
Merge branch 'master' into dev
un33k Feb 4, 2024
f32da14
Merge branch 'master' into dev
un33k Apr 11, 2024
151eb22
Add HTTP_CF_CONNECTING_IP to ip header list
un33k Apr 11, 2024
335b7bb
downgrade python,checkout
un33k Apr 11, 2024
7c7a2bd
revert coverall action
un33k Apr 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
omit coverall
un33k committed Nov 22, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit c7e409ad283b89172dc844c27f4a54c2774bf2fb
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ jobs:
- name: Run ruff
run: ruff .
- name: Run test
run: coverage run --exclude="ipware/__version__.py" --exclude="ipware/tests/*" --source=ipware manage.py test
run: coverage run --source=ipware manage.py test
- name: Coveralls
run: coveralls --service=github
env:
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -35,3 +35,9 @@ target-version = "py311"

[tool.ruff.mccabe]
max-complexity = 16

[tool.coverage.run]
omit = [
"ipware/__version__.py",
"ipware/tests/*",
]