Skip to content

Commit

Permalink
bump indigo version to 1.16.0 (#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
even1024 authored Jan 29, 2024
1 parent b3ffc41 commit cd2c4f9
Show file tree
Hide file tree
Showing 15 changed files with 59 additions and 58 deletions.
6 changes: 3 additions & 3 deletions .ci/version.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1.16.0
rc
3

695945160dfce9badfc05db0312f41b880c443f494656a56e7a71e85407049a4


46081fd90571a274160408ebc81fc91b78ffca4049d477998e3b6909ac245e05
83 changes: 42 additions & 41 deletions .github/workflows/indigo-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ jobs:
env:
INDIGO_PATH: ${{ github.workspace }}/dist
run: |
java -Xss4m -jar jython.jar api/tests/integration/test.py -t 1 -j junit_report.xml
java -Xss8m -jar jython.jar api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
apt install -y curl default-jre
curl -L https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.2/jython-standalone-2.7.2.jar -o jython.jar
export INDIGO_PATH=${{ github.workspace }}/dist
java -Xss4m -jar jython.jar api/tests/integration/test.py -p basic/basic.py -t 1 -j junit_report.xml
java -Xss8m -jar jython.jar api/tests/integration/test.py -p basic/basic.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
Expand Down Expand Up @@ -502,7 +502,7 @@ jobs:
env:
INDIGO_PATH: ${{ github.workspace }}/dist
run: |
java -Xss4m -jar jython.jar api/tests/integration/test.py -t 1 -p basic/basic.py -j junit_report.xml
java -Xss8m -jar jython.jar api/tests/integration/test.py -t 1 -p basic/basic.py -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
Expand Down Expand Up @@ -977,7 +977,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgres_major_version: [ 11, 12, 13, 14, 15 ]
postgres_major_version: [ 12, 13, 14, 15 ]
runs-on: ubuntu-latest
needs: static_analysis
steps:
Expand All @@ -1001,8 +1001,8 @@ jobs:
/bin/sh -c "
set -eux &&
yum install -y -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum-utils &&
curl -OL https://download.postgresql.org/pub/repos/yum/RPM-GPG-KEY-PGDG &&
rpm --import RPM-GPG-KEY-PGDG &&
curl -OL https://download.postgresql.org/pub/repos/yum/keys/PGDG-RPM-GPG-KEY-RHEL &&
rpm --import PGDG-RPM-GPG-KEY-RHEL &&
yumdownloader -y postgresql${{ matrix.postgres_major_version }}-devel &&
rpm -i --nodeps postgresql${{ matrix.postgres_major_version }}*.rpm &&
ls -alh /usr &&
Expand Down Expand Up @@ -1051,7 +1051,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgres_major_version: [ "11", "12", "13", "14", "15" ]
postgres_major_version: [ "12", "13", "14", "15" ]
runs-on: windows-latest
needs: static_analysis
steps:
Expand All @@ -1066,7 +1066,7 @@ jobs:
git fetch --tags -f
- name: Setup Postgres
run: |
$pg_version = switch(${{ matrix.postgres_major_version }}) { "15" { "15.1" } "14" { "14.6" } "13" { "13.9" } "12" { "12.13" } "11" { "11.18" } }
$pg_version = switch(${{ matrix.postgres_major_version }}) { "15" { "15.1" } "14" { "14.6" } "13" { "13.9" } "12" { "12.13" } }
curl -O https://get.enterprisedb.com/postgresql/postgresql-${pg_version}-1-windows-x64-binaries.zip
Expand-Archive postgresql-${pg_version}-1-windows-x64-binaries.zip
mv postgresql-${pg_version}-1-windows-x64-binaries/pgsql pgsql
Expand All @@ -1087,7 +1087,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgres_major_version: [ 11, 12, 13, 14, 15 ]
postgres_major_version: [ 12, 13, 14, 15 ]
runs-on: macos-latest
needs: static_analysis
steps:
Expand All @@ -1102,7 +1102,7 @@ jobs:
git fetch --tags -f
- name: Setup Postgres
run: |
case ${{ matrix.postgres_major_version }} in 15) pg_version=15.1;; 14) pg_version=14.6;; 13) pg_version=13.9;; 12) pg_version=12.13;; 11) pg_version=11.18;; esac;
case ${{ matrix.postgres_major_version }} in 15) pg_version=15.1;; 14) pg_version=14.6;; 13) pg_version=13.9;; 12) pg_version=12.13;; esac;
curl -O https://get.enterprisedb.com/postgresql/postgresql-${pg_version}-1-osx-binaries.zip
unzip postgresql-${pg_version}-1-osx-binaries.zip
mv pgsql/include/zlib.h pgsql/include/zlib.h.bck
Expand Down Expand Up @@ -1297,37 +1297,38 @@ jobs:
cd ${GITHUB_WORKSPACE}/bingo/bingo-elastic/java/
${GITHUB_WORKSPACE}/api/java/mvnw -DskipTests -Dmaven.test.skip=true -q deploy -P sign-artifacts -Dossrh.user=${MAVEN_USER} -Dossrh.password=${MAVEN_PASSWORD} -Dgpg.passphrase=${GPG_PASSPHRASE}
build_test_publish_indigo_service_old:
timeout-minutes: 60
runs-on: ubuntu-latest
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-python
path: utils/indigo-service/backend/lib/
- name: Build
run: docker build -f ./utils/indigo-service/backend/Dockerfile -t epmlsop/indigo-service:latest ./utils/indigo-service/backend
- name: Test Imago
run: |
docker run --rm=true -d -p 8080:80 --name=indigo_service epmlsop/indigo-service:latest
sleep 10
docker logs indigo_service
docker ps
export INDIGO_SERVICE_URL=http://localhost:8080/v2
python3 utils/indigo-service/backend/service/tests/api/imago_test.py
docker logs indigo_service
docker stop indigo_service
# build_test_publish_indigo_service_old:
# timeout-minutes: 60
# runs-on: ubuntu-latest
# needs: build_indigo_wrappers
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# with:
# lfs: false
# fetch-depth: 500
# - name: Git fetch tags
# run: |
# git config --global --add safe.directory '*'
# git fetch --tags -f
# - name: Download wrappers
# uses: actions/download-artifact@v3
# with:
# name: indigo-python
# path: utils/indigo-service/backend/lib/
# - name: Build
# run: docker build -f ./utils/indigo-service/backend/Dockerfile -t epmlsop/indigo-service:latest ./utils/indigo-service/backend
# - name: Test Imago & Indigo
# run: |
# docker run --rm=true -d -p 8080:80 --name=indigo_service epmlsop/indigo-service:latest
# sleep 10
# docker logs indigo_service
# docker ps
# export INDIGO_SERVICE_URL=http://localhost:8080/v2
# python3 utils/indigo-service/backend/service/tests/api/imago_test.py
# python3 utils/indigo-service/backend/service/tests/api/indigo_test.py
# docker logs indigo_service
# docker stop indigo_service
# TODO: add indigo tests
# - name: Test
# run: |
Expand Down
2 changes: 1 addition & 1 deletion api/dotnet/src/Indigo.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Version>1.16.0-rc.3</Version>
<Version>1.16.0</Version>
<Authors>EPAM Systems Life Science Department</Authors>
<Company>EPAM Systems</Company>
<Description>Universal cheminformatics toolkit</Description>
Expand Down
2 changes: 1 addition & 1 deletion api/http/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
anyio==3.7.0
asgiref==3.7.1
click==8.1.3
epam.indigo==1.16.0.rc3
epam.indigo==1.16.0
fastapi==0.95.2
h11==0.14.0
idna==3.4
Expand Down
2 changes: 1 addition & 1 deletion api/http/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup_kwargs = {
"name": "indigo-service",
"version": "1.16.0.rc3",
"version": "1.16.0",
"description": "",
"long_description": None,
"author": "Ruslan Khyurri",
Expand Down
2 changes: 1 addition & 1 deletion api/indigo-version.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(INDIGO_DEFAULT_VERSION "1.16.0-rc.3")
set(INDIGO_DEFAULT_VERSION "1.16.0")
set(INDIGO_MAX_REVISION 1000)
find_package(Git)
if(GIT_EXECUTABLE)
Expand Down
2 changes: 1 addition & 1 deletion api/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<revision>1.16.0-rc.3</revision>
<revision>1.16.0</revision>
</properties>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion api/python/indigo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .indigo.indigo_exception import IndigoException # noqa
from .indigo.indigo_object import IndigoObject # noqa

__version__ = "1.16.0.rc3"
__version__ = "1.16.0"
2 changes: 1 addition & 1 deletion api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@

setup(
name="epam.indigo",
version="1.16.0.rc3",
version="1.16.0",
description="Indigo universal cheminformatics toolkit",
author="EPAM Systems Life Science Department",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion api/r/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: rindigo
Version: 1.16.0-rc.3
Version: 1.16.0
Date: 2020-12-10
Title: R Package for Indigo Toolkit
Authors@R: c(person(given = "Mikhail", family = "Kviatkovskii", role = c("cre"),
Expand Down
2 changes: 1 addition & 1 deletion api/wasm/indigo-ketcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "indigo-ketcher",
"version": "1.16.0-rc.3-2",
"version": "1.16.0-2",
"description": "WASM implementation of Indigo organic chemistry toolkit web service for Ketcher",
"main": "indigo-ketcher.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion bingo/bingo-elastic/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.epam.indigo</groupId>
<artifactId>bingo-elastic</artifactId>
<version>1.16.0-rc.3</version>
<version>1.16.0</version>
<packaging>jar</packaging>

<name>Bingo Elastic</name>
Expand Down
2 changes: 1 addition & 1 deletion bingo/bingo-elastic/python/bingo_elastic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.16.0.rc3"
__version__ = "1.16.0"
4 changes: 2 additions & 2 deletions bingo/bingo-elastic/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name="bingo_elastic",
version="1.16.0.rc3",
version="1.16.0",
description="Cartridge that provides fast, scalable, and efficient storage and searching solution for chemical information using Elasticsearch",
author="Ruslan Khyurri",
author_email="[email protected]",
Expand All @@ -35,7 +35,7 @@
download_url="https://pypi.org/project/bingo_elastic",
python_requires=">=3.7",
packages=["bingo_elastic", "bingo_elastic.model"],
install_requires=["epam.indigo==1.16.0.rc3", "elasticsearch==7.16.2"],
install_requires=["epam.indigo==1.16.0", "elasticsearch==7.16.2"],
extras_require={
"async": ["elasticsearch[async]==7.16.2"],
"dev": [
Expand Down
2 changes: 1 addition & 1 deletion utils/indigo-ml/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@

setup(
name="epam.indigo",
version="1.16.0.rc3",
version="1.16.0",
description="Indigo universal cheminformatics toolkit",
author="EPAM Systems Life Science Department",
author_email="[email protected]",
Expand Down

0 comments on commit cd2c4f9

Please sign in to comment.