Skip to content

Commit

Permalink
Attempt to upgrade env and github build somewhat
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Sep 18, 2024
1 parent b98be14 commit e864d25
Show file tree
Hide file tree
Showing 7 changed files with 506 additions and 311 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
build:
steps:
# Python & dependency installation
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- name: setup Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.9'
- name: install Poetry
uses: snok/install-poetry@v1.2.1
uses: snok/install-poetry@v1.4.1
- name: set poetry config path
run: poetry config virtualenvs.path ~/.virtualenvs
- name: install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7
3.9
2 changes: 1 addition & 1 deletion docs/contributing/scrapers.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ directory and inspect the JSON files. If you're trying to make a small
fix this is often sufficient, you can confirm that the scraped data
looks correct and move on.

Please see our document on [Querying Scraper Output Data](./query-scraper-output-data.md)
Please see our document on [Querying Scraper Output Data](../data/query-scraper-output-data.md)
for tools you can use to investigate data issues across a set of many
scraped data output files.

Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ nav:
- 'contributing/documentation.md'
- Data:
- 'data/index.md'
- 'data/query-scraper-output-data.md'
- 'data/categorization.md'
- 'data/session-naming.md'
- Enhancement Proposals:
Expand Down
798 changes: 496 additions & 302 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ description = ""
authors = ["James Turk <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.7"
mkdocs-material = "^8.0.1"
python = "^3.9"
mkdocs-material = "^8.5.11"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e864d25

Please sign in to comment.