Skip to content

Commit

Permalink
Remove version restrictions on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Galarzaa90 committed Aug 10, 2023
1 parent 2ec08eb commit 1f7aeb5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]

steps:
- name: Checkout
Expand All @@ -27,4 +27,4 @@ jobs:
- name: Test
run: |
python setup.py test
python setup.py test
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-n-publish:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
Expand All @@ -24,4 +24,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:3.9-slim
FROM python:3.11-slim

WORKDIR /app
COPY requirements.txt .
COPY guildwatcher.py .

RUN pip install -r requirements.txt

CMD ["python", "guildwatcher.py"]
CMD ["python", "guildwatcher.py"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A discord webhook that posts guild changes (member joins, members leaves, member promoted) in a Discord channel.

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Galarzaa90/GuildWatcher/Build/master)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Galarzaa90/GuildWatcher/build.yml?branch=main)
[![GitHub release](https://img.shields.io/github/release/Galarzaa90/GuildWatcher/all.svg)](https://github.com/Galarzaa90/GuildWatcher/releases)
[![PyPI](https://img.shields.io/pypi/v/GuildWatcher.svg)](https://pypi.python.org/pypi/GuildWatcher/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/GuildWatcher.svg)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests
tibia.py
PyYAML
PyYAML

0 comments on commit 1f7aeb5

Please sign in to comment.