Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add poetry.lock back to versioning and trying minimal dependency #400

Merged
merged 35 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
db17338
Add poetry.lock to versioning and trying minimal dependency
hrshdhgd Jul 27, 2023
ca7bf25
formatted
hrshdhgd Jul 27, 2023
369f3e8
Brought back deprecation
hrshdhgd Jul 27, 2023
1c2979a
updated toml
hrshdhgd Jul 27, 2023
03eee9e
Updated poetry.lock
hrshdhgd Jul 27, 2023
ebb31ce
Added pytest-logging installation to test things
hrshdhgd Jul 27, 2023
3afd73c
added command suggested by error
hrshdhgd Jul 27, 2023
3ec3de9
added poetry run before the command
hrshdhgd Jul 27, 2023
6af44ca
poetry config virtualenvs.create false
hrshdhgd Jul 27, 2023
140b4a0
undo prev commit an reset versionin toml
hrshdhgd Jul 27, 2023
a2a5307
usepipx instead of pip
hrshdhgd Jul 27, 2023
7e4c461
inspiration from linkml
hrshdhgd Jul 27, 2023
9ea90e9
install with root
hrshdhgd Jul 27, 2023
be1fbe9
remove cache for this time
hrshdhgd Jul 27, 2023
1f23220
put cach back
hrshdhgd Jul 27, 2023
ef05a64
windows specific test
hrshdhgd Jul 27, 2023
64cd938
added {}
hrshdhgd Jul 27, 2023
8fb78d9
windows adding path
hrshdhgd Jul 28, 2023
695a2a7
added pytest-logging
hrshdhgd Jul 28, 2023
07a91b9
commented cache
hrshdhgd Jul 28, 2023
e479772
remove windows
hrshdhgd Jul 28, 2023
7fee6d1
anchor 1.3.2 poetry
hrshdhgd Jul 28, 2023
f1ae913
adding windows again
hrshdhgd Jul 28, 2023
0c2dd48
put cache back
hrshdhgd Jul 28, 2023
e8ac7d9
Added click and curies
hrshdhgd Jul 31, 2023
153cb78
Added more packages
hrshdhgd Jul 31, 2023
47b4d1c
bumped poetry version to 1.4.2
hrshdhgd Jul 31, 2023
0e4387e
back to 1.3.2
hrshdhgd Jul 31, 2023
8cf2595
updated packages and also rolled back to 1.3.2
hrshdhgd Jul 31, 2023
e7691f1
remove caching
hrshdhgd Jul 31, 2023
ce10655
removed rdflib
hrshdhgd Jul 31, 2023
7f4e068
add rdflib back
hrshdhgd Jul 31, 2023
d3f960d
Merge branch 'master' into test-min-dependency
hrshdhgd Jul 31, 2023
3cd92f6
Added pyparsing
hrshdhgd Jul 31, 2023
7bb5177
removed pyparsing
hrshdhgd Jul 31, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,26 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Install Poetry
run: |
pip install --upgrade pip
pip install poetry==1.3.2

uses: snok/install-poetry@v1
with:
version: 1.3.2

- name: Windows specific step.
if: matrix.os == 'windows-latest'
run: echo "${HOME}/.local/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
run: poetry install
run: |
poetry run pip wheel --use-pep517 "pytest-logging (==2015.11.4)"
poetry install --no-interaction


- name: Check code quality with flake8
run: poetry run tox -e flake8
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,4 @@ schema/sssom.yaml
schema/sssom_datamodel.py
sssom/internal_context.py
sssom/sssom_datamodel.py
*.rej
poetry.lock
*.rej
Loading
Loading