Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sonic182 committed Jan 31, 2025
1 parent 3a77501 commit c379f88
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 76 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ test312:
echo "TEST PYTHON 3.12"
docker run -i --rm -v $(shell pwd):/app python:3.12 bash -c "$(DOCKER_CMD)"

test313:
echo "TEST PYTHON 3.13"
docker run -i --rm -v $(shell pwd):/app python:3.13 bash -c "$(DOCKER_CMD)"

test-pypy37:
echo "TEST PYPY 3.7"
docker run -i --rm -v $(shell pwd):/app pypy:3.7 bash -c "$(DOCKER_CMD)"
Expand All @@ -49,7 +53,7 @@ test-pypy310:
echo "TEST PYPY 3.10"
docker run -i --rm -v $(shell pwd):/app pypy:3.10 bash -c "$(DOCKER_CMD)"

test: test37 test38 test39 test310 test311 test312 test-pypy37 test-pypy38 test-pypy39 test-pypy310
test: test37 test38 test39 test310 test311 test312 test313 test-pypy37 test-pypy38 test-pypy39 test-pypy310
echo "OK"

clear:
Expand Down
125 changes: 52 additions & 73 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ aiohttp = "^3.9.5"
asgiref = "^3.8.1"
black = "^24.4.2"
click = "<8.1.0"
django = "<4.0.0"
django = "^4.0.0"
httptools = {version="^0.6.0", markers="sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'PyPy'"}
httpx = "^0.27.0"
mypy = {version="^1.0.0", markers="platform_python_implementation != 'PyPy'"}
Expand All @@ -61,7 +61,6 @@ pytest-mypy = {version="^0.10.3", markers="platform_python_implementation != 'Py
pytest-sugar = "^1.0.0"
pytest-timeout = "^2.3.1"
requests = "^2.32.3"
typed-ast = {version="^1.4.0", markers="platform_python_implementation != 'PyPy'"}
uvicorn = "^0.30.3"
uvloop = {version=">=0.19,<0.21", markers="sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'PyPy' and python_version < '3.13.0'" }
winloop = {version = "^0.1.6", platform = "win32"}
Expand Down

0 comments on commit c379f88

Please sign in to comment.