Skip to content

Commit a5e09f9

Browse files
committed
fixup
1 parent eb2ffa5 commit a5e09f9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3333
python -m pip install moarchiving
3434
mkdir src
35-
ln -s cma src/cma
35+
ln -s ../cma src/cma
3636
python -m pip install . # or install numpy and further dependencies?
3737
- name: Lint with flake8
3838
run: |

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ classifiers = [
6060
# packages = ["cma", "cma.utilities"] # fails when they are in an src/ folder
6161
include-package-data = false # true is default, false doesn't change anything
6262

63-
[tool.setuptools.packages.find] # for where=. works only in a clean folder
64-
# # without any directives: finds src folder implying a standard (nonflat) layout
65-
# # # where = ["src"] # this doesn't work, it always takes the root too?
66-
# # include = ["cma*"] # cma/* ?
67-
exclude = ["notebooks*"] # , "cma_*" ?
63+
# [tool.setuptools.packages.find] # for where=. works only in a clean folder
64+
# without any directives: finds src folder implying a standard (nonflat) layout
65+
# # where = ["src"] # this doesn't work, it always takes the root too?
66+
# include = ["cma*"] # cma/* ?
67+
# exclude = ["notebooks*"] # , "cma_*" ?
6868

6969
# namespaces = false
7070

0 commit comments

Comments
 (0)