Skip to content

Commit 378ede3

Browse files
+ hotfix
1 parent a753988 commit 378ede3

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
python -m pip install -U pip
2929
python -m pip install -U build
30-
python -m build ..
30+
python -m build
3131
3232
- name: Publish package distributions to PyPI
3333
uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[project]
2+
name = "thread"
3+
version = "0.0.1"
4+
description = "Threading module extension"
5+
16
[build-system]
27
requires = ["setuptools", "wheel"]
3-
build-backend = "setuptools.build_meta"
8+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
long_description_content_type = 'text/markdown',
1717
long_description = long_description,
1818

19-
packages = find_packages(where = 'src'),
20-
package_dir = {'': 'src'},
19+
packages = find_packages(),
2120
install_requires = ['numpy==1.26.2'],
2221
keywords = ['python', 'threading', 'multiprocessing'],
2322
classifiers = [
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)