Skip to content

Commit 0347d1d

Browse files
author
dn.petrov
committed
asdf7
1 parent db93fdb commit 0347d1d

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

.github/actions/manylinux2014_x86_64/Dockerfile .github/actions/manylinux_2_24_x86_64/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/pypa/manylinux2014_x86_64:latest
1+
FROM quay.io/pypa/manylinux_2_28_x86_64:latest
22

33
COPY /entrypoint.sh /entrypoint.sh
44
RUN chmod +x /entrypoint.sh

.github/actions/manylinux2014_aarch64/Dockerfile .github/actions/manylinux_2_28_aarch64/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/pypa/manylinux2014_aarch64:latest
1+
FROM quay.io/pypa/manylinux_2_28_aarch64:latest
22

33
COPY entrypoint.sh /entrypoint.sh
44
RUN chmod +x /entrypoint.sh

.github/workflows/build-and-test-arm64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
platforms: arm64
2222

2323
- name: Build wheel
24-
uses: ./.github/actions/manylinux2014_aarch64
24+
uses: ./.github/actions/manylinux_2_28_aarch64
2525
with:
2626
script: ./.github/build_scripts/build_package.sh
27-
platform: manylinux2014_aarch64
27+
platform: manylinux_2_28_aarch64
2828
makefile: aarch64-linux-gnu.mk
2929
python: /opt/python/cp38-cp38/bin/python
3030

.github/workflows/build-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
uses: ./.github/actions/prepare_snap7
1717

1818
- name: Build wheel
19-
uses: ./.github/actions/manylinux2014_x86_64
19+
uses: ./.github/actions/manylinux_2_28_x86_64
2020
with:
2121
script: ./.github/build_scripts/build_package.sh
22-
platform: manylinux2014_x86_64
22+
platform: manylinux_2_28_x86_64
2323
makefile: x86_64_linux.mk
2424
python: /opt/python/cp38-cp38/bin/python
2525
wheeldir: wheelhouse/${{ runner.os }}/

.github/workflows/mypy.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Mypy
22
on:
33
push:
4-
branches: [master]
5-
pull_request:
6-
branches: [master]
4+
# branches: [master]
5+
# pull_request:
6+
# branches: [master]
77
jobs:
88
build:
99
runs-on: ubuntu-20.04
@@ -14,5 +14,6 @@ jobs:
1414
run: |
1515
sudo apt-get update -qq
1616
sudo apt-get install -y python3-pip
17+
python3 -m pip install --upgrade setuptools
1718
- name: Run mypy
1819
run: make mypy

doc/introduction.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ python-snap7 is a Python wrapper for the
66
32/64 bit, multi-platform Ethernet communication suite for interfacing natively
77
with Siemens S7 PLCs.
88

9-
Python-snap7 is developer for snap7 1.1.0 and Python 3.7+. It is tested
9+
Python-snap7 is developer for snap7 1.1.0 and Python 3.8+. It is tested
1010
on Windows (10 64 bit), OSX 10.15 and Linux, but it may work on other operating
11-
systems. Python Versions <3.7 may work, but is not supported anymore.
11+
systems. Python Versions <3.8 may work, but is not supported anymore.
1212

1313
The project development is centralized on `github <https://github.com/gijzelaerr/python-snap7>`_.

0 commit comments

Comments
 (0)