Skip to content

Commit 764a263

Browse files
authored
Merge pull request #54 from fronzbot/dev
Twine fix
2 parents 5f7e542 + 8a79750 commit 764a263

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
run: |
1818
python -m pip install --upgrade pip
1919
pip install twine build
20+
pip install importlib_metadata==7.2.1
2021
- name: Build and publish
2122
env:
2223
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

pyproject.toml

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

55
[project]
66
name = "python-adc-eval"
7-
version = "0.3.0"
7+
version = "0.4.0b0"
88
license = {text = "MIT"}
99
description = "ADC Evaluation Library"
1010
readme = "README.rst"
@@ -13,13 +13,13 @@ keywords = ["adc", "analog-to-digital", "evaluation", "eval", "spectrum"]
1313
classifiers = [
1414
"License :: OSI Approved :: MIT License",
1515
"Operating System :: OS Independent",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
2020
"Topic :: Scientific/Engineering",
2121
]
22-
requires-python = ">=3.8.0"
22+
requires-python = ">=3.9.0"
2323
dependencies = [
2424
"matplotlib==3.9.0",
2525
]

0 commit comments

Comments
 (0)