Skip to content

Commit f5772e0

Browse files
committed
Remove py2.7 from actions and publish
1 parent 73228c4 commit f5772e0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["2.7", "3.x"]
15+
python-version: ["3.x"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

.github/workflows/python-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: ["2.7", "3.x"]
25+
python-version: ["3.x"]
2626

2727
steps:
2828
- uses: actions/checkout@v3
@@ -34,9 +34,9 @@ jobs:
3434
run: |
3535
python -m pip install --upgrade pip setuptools wheel
3636
python -m pip install build
37-
- name: Build 2.7 package
38-
if: ${{ matrix.python-version == '2.7' }}
39-
run: python -m build --wheel
37+
# - name: Build 2.7 package
38+
# if: ${{ matrix.python-version == '2.7' }}
39+
# run: python -m build --wheel
4040
- name: Build package
4141
if: ${{ matrix.python-version != '2.7' }}
4242
run: python -m build

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# For a discussion on single-sourcing the version across setup.py and the
3131
# project code, see
3232
# https://packaging.python.org/en/latest/single_source_version.html
33-
version='3.3', # Required
33+
version='3.3.post1', # Required
3434

3535
# This is a one-line description or tagline of what your project does. This
3636
# corresponds to the "Summary" metadata field:

0 commit comments

Comments
 (0)