Skip to content

Commit

Permalink
Merge pull request #156 from Ensembl/hotfix/upgrade_cicd_python
Browse files Browse the repository at this point in the history
Upgrade CI/CD python version for tests to pass
  • Loading branch information
bilalebi authored Oct 24, 2024
2 parents 3709a40 + 41e035e commit ca43caf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ stages:

# GitLab Dependency Proxy to get rid of Docker hub pull limit issue
# https://docs.gitlab.com/ee/user/packages/dependency_proxy/#authenticate-within-cicd
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.8
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.10.14

# This fixes "error during connect: Post http://docker:2375/v1.40/auth: dial tcp: lookup docker on 192.168.65.5:53: no such host"
variables:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GraphQL requires a schema (in /common) and implementation of resolver functions
https://www.ebi.ac.uk/seqdb/confluence/display/EA/Thoas+Docs

## Installation
Requires Python 3.8+.
Requires Python 3.10+.

To install dependencies, run:

Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.8
python_version = 3.10.14

[mypy-requests.*]
ignore_missing_imports = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
version="0.1.0",
packages=find_packages(),
license=LICENSE_CT,
python_requires=">=3.8",
python_requires=">=3.10.14",
package_data={
# Make sure schema makes it to distro
"common": ["*.graphql"]
Expand Down

0 comments on commit ca43caf

Please sign in to comment.