Skip to content

Commit c7bb570

Browse files
committed
Fix PyPI upload
Fix classifiers.txt
1 parent 5d9f4eb commit c7bb570

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
python-version: '3.x'
117117
- name: Install dependencies
118118
run: |
119-
python -m pip install --upgrade pip wheel
119+
python -m pip install --upgrade pip wheel setuptools_scm
120120
pip install --upgrade -r CI_REQUIREMENTS.txt
121121
pip install --upgrade twine
122122
- name: Build package

classifiers.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Intended Audience :: Developers
33
Topic :: Software Development :: Libraries :: Python Modules
44
License :: OSI Approved :: Apache Software License
55
Programming Language :: Python :: 3
6-
rogramming Language :: Python :: 3 :: Only
6+
Programming Language :: Python :: 3 :: Only
77
Programming Language :: Python :: 3.7
88
Programming Language :: Python :: 3.8
99
Programming Language :: Python :: 3.9

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Minimum requirements for the build system to execute.
33
# PEP 508 specifications for PEP 518.
44
requires = [
5-
"setuptools >= 21.0.0,!=24.0.0,!=34.0.0,!=34.0.1,!=34.0.2,!=34.0.3,!=34.1.0,!=34.1.1,!=34.2.0,!=34.3.0,!=34.3.1,!=34.3.2,!=36.2.0", # PSF/ZPL
5+
"setuptools>=45", # PSF/ZPL
66
"wheel",
7-
"setuptools_scm[toml]>=3.4",
7+
"setuptools_scm[toml]>=6.2",
88
]
99
build-backend="setuptools.build_meta"
1010

@@ -141,4 +141,4 @@ exclude_lines = [
141141
pretty_print = true
142142

143143
[tool.setuptools_scm]
144-
write_to="exec_helpers/_version.py"
144+
write_to = "exec_helpers/_version.py"

0 commit comments

Comments
 (0)