Skip to content

Commit

Permalink
+ hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Nov 14, 2023
1 parent cd5cced commit 35ca30f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ jobs:

steps:
- name: Build distribution
run: |
python -m pip install -U pip
python -m pip install -U build
python -m build
uses: actions/download-artifact@v3
with:
path: dist/

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
long_description_content_type = 'text/markdown',
long_description = long_description,

packages = find_packages(),
packages = find_packages(where = 'src'),
package_dir = {'': 'src'},
install_requires = ['numpy==1.26.2'],
keywords = ['python', 'threading', 'multiprocessing'],
classifiers = [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_parallelprocessing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import time
import numpy
import pytest
from thread import ParallelProcessing, exceptions
from src.thread import ParallelProcessing, exceptions


# >>>>>>>>>> Dummy Functions <<<<<<<<<< #
Expand Down
2 changes: 1 addition & 1 deletion tests/test_thread.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time
import pytest
from thread import Thread, exceptions
from src.thread import Thread, exceptions


# >>>>>>>>>> Dummy Functions <<<<<<<<<< #
Expand Down

0 comments on commit 35ca30f

Please sign in to comment.