-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updates to use the latest uv (v0.5.28) which changes some things in `pyproject.toml` - Update docs to use `uv run` where appropriate. - Update CI to use uv to run tests. - To simplify things just have one requirements.txt file that is used by Docker to install dependencies with `uv pip` - Changes to tests to accomodate changes in the openalex API
- Loading branch information
Showing
10 changed files
with
765 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
[project] | ||
name = "rialto-airflow" | ||
|
||
version = "0.1.0" | ||
|
||
description = "Airflow app for harvesting data for open access analysis and research intelligence." | ||
|
||
authors = [ {name = "Laura Wrubel", email = "[email protected]"}, {name = "Ed Summers", email = "[email protected]"}, {name = "Jacob Hill", email = "[email protected]"}] | ||
requires-python = ">= 3.12" | ||
|
||
# Aligned with what is defined in Dockerfile and CI | ||
requires-python = "== 3.12.*" | ||
|
||
package-mode = false | ||
|
||
dependencies = [ | ||
"pandas", | ||
"requests", | ||
"python-dotenv", | ||
"dimcli", | ||
"polars>=1.2", | ||
"pyalex", | ||
"more-itertools" | ||
"more-itertools", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
pythonpath = ["."] | ||
addopts = "-v" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
[dependency-groups] | ||
dev = [ | ||
"pytest>=8.3.4", | ||
"python-dotenv>=1.0.1", | ||
"ruff>=0.9.4", | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.