Skip to content

Commit

Permalink
Updated libs & Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanchoyzer committed Sep 22, 2024
1 parent 7962ad3 commit 62a4ce7
Show file tree
Hide file tree
Showing 5 changed files with 1,098 additions and 982 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'poetry'

- name: Install Dependencies
run: |
poetry env use 3.11
poetry env use 3.12
poetry install
- name: Run Black
Expand Down Expand Up @@ -88,12 +88,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'poetry'

- name: Install Dependencies
run: |
poetry env use 3.11
poetry env use 3.12
poetry install
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.7-slim as base
FROM python:3.12.6-slim as base

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / push-docker-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
RUN python -m pip install --upgrade --no-cache-dir pip wheel setuptools \
&& python -m pip install poetry \
&& poetry config virtualenvs.create false \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![GitHub commit activity](https://img.shields.io/github/commit-activity/y/Sanchoyzer/starlab)
![GitHub last commit](https://img.shields.io/github/last-commit/Sanchoyzer/starlab)

[![Python](https://img.shields.io/badge/Python-3.11-3776AB.svg?style=flat&logo=python&logoColor=ffdd54)](https://www.python.org)
[![Python](https://img.shields.io/badge/Python-3.12-3776AB.svg?style=flat&logo=python&logoColor=ffdd54)](https://www.python.org)
[![GitHub Actions](https://img.shields.io/badge/github%20actions-%232671E5.svg?logo=githubactions&logoColor=white)](https://github.com/Sanchoyzer/starlab/actions)
[![Sentry](https://img.shields.io/static/v1?message=Sentry&color=362D59&logo=Sentry&logoColor=FFFFFF&label=)](https://sentry.io)

Expand Down
Loading

0 comments on commit 62a4ce7

Please sign in to comment.