chore(deps): update python
This commit is contained in:
parent
a830676f42
commit
54c07209ca
@ -4,7 +4,7 @@ on: [push]
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
container: python:3.12-slim
|
||||
container: python:3.13-slim
|
||||
steps:
|
||||
- run: apt-get update
|
||||
- run: apt-get install -y git nodejs
|
||||
@ -43,7 +43,7 @@ jobs:
|
||||
|
||||
pypi:
|
||||
runs-on: ubuntu-latest
|
||||
container: python:3.12-slim
|
||||
container: python:3.13-slim
|
||||
needs: [lint]
|
||||
if: gitea.ref_type == 'tag'
|
||||
env:
|
||||
|
@ -1,10 +1,10 @@
|
||||
FROM python:3.12-slim AS build
|
||||
FROM python:3.13-slim AS build
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN pip install poetry && poetry build
|
||||
|
||||
FROM python:3.12-slim
|
||||
FROM python:3.13-slim
|
||||
|
||||
COPY --from=build /app/dist /tmp/dist
|
||||
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
||||
|
@ -12,7 +12,7 @@ repository = "https://git.crystalyx.net/Xefir/Divent"
|
||||
divent = 'divent.bot:run'
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.9,<3.13"
|
||||
python = ">=3.13.1,<3.14"
|
||||
disnake = "^2.9.3"
|
||||
ics = "0.8.0.dev0"
|
||||
python-dotenv = "^1.0.1"
|
||||
|
Loading…
Reference in New Issue
Block a user