Skip to content

Commit

Permalink
specify that 3.10 is the oldest python version
Browse files Browse the repository at this point in the history
  • Loading branch information
danibenethales committed Jul 24, 2024
1 parent 140cc37 commit c9dfd21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.12"]
python: ["3.10", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ git clone https://github.com/ThalesGroup/requin-2023-experiment.git
pip install -e .
```

Note that the oldest version of Python that this project has been tested on is 3.10, while the newest version is 3.12.

## Running Code to Generate Files
After installing the project as a package, you can run the code in the CLI.

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ package_dir =
=src

# Require a min/specific Python version (comma-separated conditions)
# python_requires = >=3.8
python_requires = >=3.10

# Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0.
# Version specifiers like >=2.2,<3.0 avoid problems due to API changes in
# new major versions. This works if the required packages follow Semantic Versioning.
# For more information, check out https://semver.org/.
install_requires =
importlib-resources
importlib-metadata; python_version<"3.8"
importlib-metadata
scipy
numpy
moviepy>=1.0.3
Expand Down

0 comments on commit c9dfd21

Please sign in to comment.