mirror of
https://github.com/nikdoof/smsbot.git
synced 2025-12-13 10:02:15 +00:00
Compare commits
17 Commits
smsbot-hel
...
0.0.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
3bf3823b77
|
|||
|
8c91dacc7e
|
|||
|
4bdf3e0f63
|
|||
| 24f72ade72 | |||
| 852a684d4e | |||
| 41bc52d046 | |||
|
|
90b5fa0621 | ||
|
|
f2fec6b5b6 | ||
| c7f7ef3fda | |||
| cdff8dab7b | |||
|
|
98aacb8093 | ||
| b30fa38e41 | |||
| c51ba0e0ae | |||
|
|
692a7eab37 | ||
|
|
5d7db991e6 | ||
|
|
30835e4a6f | ||
|
|
3b55f71db6 |
2
.github/workflows/build-container.yaml
vendored
2
.github/workflows/build-container.yaml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v3
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: |
|
||||
|
||||
2
.github/workflows/lint.yaml
vendored
2
.github/workflows/lint.yaml
vendored
@@ -18,4 +18,4 @@ jobs:
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: wemake-python-styleguide
|
||||
uses: wemake-services/wemake-python-styleguide@0.16.1
|
||||
uses: wemake-services/wemake-python-styleguide@0.17.0
|
||||
|
||||
4
.github/workflows/release-chart.yaml
vendored
4
.github/workflows/release-chart.yaml
vendored
@@ -21,12 +21,12 @@ jobs:
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
- name: Install Helm
|
||||
uses: azure/setup-helm@v1
|
||||
uses: azure/setup-helm@v3
|
||||
with:
|
||||
version: v3.6.3
|
||||
|
||||
- name: Run chart-releaser
|
||||
uses: helm/chart-releaser-action@v1.4.0
|
||||
uses: helm/chart-releaser-action@v1.5.0
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
CR_RELEASE_NAME_TEMPLATE: "smsbot-helm-chart-{{ .Version }}"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM python:3.10-alpine
|
||||
FROM python:3.11-alpine
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
RUN pip install .
|
||||
|
||||
@@ -15,4 +15,4 @@ maintainers:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.k8s-at-home.com
|
||||
version: 4.4.2
|
||||
version: 4.5.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = smsbot
|
||||
version = 0.0.3
|
||||
version = 0.0.4
|
||||
description = A simple Telegram bot to receive SMS messages.
|
||||
long_description = file: README.md, LICENSE
|
||||
license = MIT
|
||||
@@ -9,7 +9,7 @@ classifiers =
|
||||
Framework :: Flask
|
||||
License :: OSI Approved :: MIT License
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.9
|
||||
Programming Language :: Python :: 3.11
|
||||
|
||||
[options]
|
||||
zip_safe = False
|
||||
@@ -19,7 +19,7 @@ install_requires =
|
||||
flask
|
||||
waitress
|
||||
twilio
|
||||
python-telegram-bot
|
||||
python-telegram-bot<=14
|
||||
prometheus_client
|
||||
|
||||
[options.entry_points]
|
||||
|
||||
Reference in New Issue
Block a user