Skip to content

Commit

Permalink
Merge pull request #475 from afuetterer/python-version
Browse files Browse the repository at this point in the history
build: set requires-python setting to 3.11 only
  • Loading branch information
huberrob committed Jan 12, 2024
2 parents b6b4cd2 + 2971971 commit c7cb7e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,3 @@ updates:
directory: /
schedule:
interval: monthly
- package-ecosystem: docker
directory: /
schedule:
interval: monthly
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# syntax=docker/dockerfile:1.5
FROM python:3.12-slim
# at the moment only Python 3.11 is supported
FROM python:3.11-slim

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The service is **in development** and its assessment depends on several factors.
![alt text](https://github.com/pangaea-data-publisher/fuji/blob/master/fuji_server/static/main.png?raw=true)

## Requirements
[Python](https://www.python.org/downloads/) `3.11+`
[Python](https://www.python.org/downloads/) `3.11`

### Google Dataset Search
* Download the latest Dataset Search corpus file from: <https://www.kaggle.com/googleai/dataset-search-metadata-for-datasets>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ keywords = [
license = "MIT"
name = "fuji"
readme = "README.md"
requires-python = ">=3.11"
requires-python = "~=3.11" # at the moment only Python 3.11 is supported
version = "3.1.1"

[project.optional-dependencies]
Expand Down

0 comments on commit c7cb7e5

Please sign in to comment.