Skip to content

Commit

Permalink
Removing python 3.7 builds, adding python 3.10 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Feb 1, 2022
1 parent 5804185 commit 4bf8445
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -11,9 +11,9 @@ jobs:
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.8'
- '3.9'
- '3.10'
services:
redis:
image: redis:latest
Expand Down Expand Up @@ -83,5 +83,5 @@ jobs:
coverage-reports: coverage.xml
env:
secrets.CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
if: "${{ (matrix.python-version == '3.7') && (!!env.CODACY_PROJECT_TOKEN) }}"
if: "${{ (matrix.python-version == '3.8') && (!!env.CODACY_PROJECT_TOKEN) }}"

4 changes: 3 additions & 1 deletion HISTORY.rst
Expand Up @@ -81,8 +81,10 @@ Full Change List
- Improving performance of case listing (#304)
- Adding shortcut buttons to phenotype annotation (#289)
- Fixing issue with multiple added variants (#283)
- Implementing several usability improvements for clinvar submission editor (#286)
- Make clinvar UI work with many annotations by making it load them lazily for one case at a time (#302)
- Implementing several usability improvements for clinvar submission editor (#286).
- Adding CI builds for Python 3.10 in Github actions, bumping numpy/pandas dependencies.
Dropping support for Python 3.7.

-------
v0.23.9
Expand Down
4 changes: 2 additions & 2 deletions requirements/base.txt
Expand Up @@ -98,8 +98,8 @@ requests ==2.25.1
beautifulsoup4 >=4.9.3, <4.10

# Numpy and friends
numpy >=1.20.3, <1.21
pandas >=1.2.4, <1.3
numpy >=1.22.1, <1.23
pandas >=1.4.0, <1.5

# Simple object proxies.
wrapt >=1.12.1, <1.13
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -29,9 +29,9 @@
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
Expand Down

0 comments on commit 4bf8445

Please sign in to comment.