Skip to content

Commit aef452c

Browse files
committed
Create 1.3.8 version on pypi
1 parent 569467c commit aef452c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1818

1919
steps:
2020
- uses: actions/checkout@v2

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include .VERSION README.md
1+
include README.md

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pypact"
7-
version = "1.3.7"
7+
version = "1.3.8"
88
description = "The package for reading and manipulating the fispact output text file."
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -36,4 +36,4 @@ where = ["."]
3636
include = ["pypact", "pypact.*"]
3737

3838
[tool.setuptools.package-data]
39-
pypact = ["library/data/*.json"]
39+
pypact = ["library/data/*.json"]

scripts/update_on_pypi.sh

100644100755
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
python3 setup.py test
4-
python3 setup.py sdist
5-
pip wheel --no-deps -w dist .
6-
twine upload dist/*
3+
python3 -m pip install --upgrade build
4+
python3 -m build
5+
python3 -m pip install --upgrade twine
6+
python3 -m twine upload dist/*

0 commit comments

Comments
 (0)