Skip to content

Commit b90a949

Browse files
committed
fix
1 parent 8d55a38 commit b90a949

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
# python -m pip install --upgrade pip
28-
pip install -r requirements.txt
28+
pip install .
2929
3030
publish:
3131
if: github.ref == 'refs/heads/master' # Only runs on the master branch
@@ -47,7 +47,6 @@ jobs:
4747
pip install build twine
4848
pip install setuptools
4949
pip install wheel
50-
pip install -r requirements.txt
5150
5251
- name: Build package
5352
working-directory: src

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"aps-toolkit"
1919
],
2020
python_requires=">=3.9",
21-
package_dir={"": "src"},
21+
package_dir={"" : "."},
2222
classifiers=[
2323
"Programming Language :: Python :: 3",
2424
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)