Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/run-python-tests-epas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
matrix:
os: [ubuntu-22.04, windows-latest]
pgver: [14, 15, 16, 17, 18]
postgisver: [34]
include:
- pgver: 18
postgisver: 35
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

runs-on: ${{ matrix.os }}

Expand All @@ -53,7 +57,7 @@ jobs:
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: |
sudo apt update
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger edb-as${{ matrix.pgver }}-postgis34
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger edb-as${{ matrix.pgver }}-postgis${{ matrix.postgisver }}

- name: Install pgagent on Linux
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver <= 16 }}
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Flask-SQLAlchemy==3.1.*
Flask-WTF==1.2.*
Flask==3.1.*
google-api-python-client==2.*
google-auth-oauthlib==1.3.0
google-auth-oauthlib==1.3.1
gssapi==1.11.*
jsonformatter~=0.3.4
keyring==25.*
Expand Down Expand Up @@ -62,4 +62,4 @@ urllib3==2.6.*; python_version > '3.9'
user-agents==2.2.0
Werkzeug==3.1.*
WTForms==3.1.*; python_version <= '3.9'
WTForms==3.2.*; python_version > '3.9'
WTForms==3.2.*; python_version > '3.9'
2 changes: 1 addition & 1 deletion tools/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ requests>=2.21.0
requests[security]>=2.21.0
safety>=1.9.0
Sphinx==7.4.7
sphinxcontrib-youtube==1.4.1
sphinxcontrib-youtube==1.5.0
2 changes: 1 addition & 1 deletion web/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = [
'babelOptions': {
'plugins': [
'@babel/plugin-syntax-jsx',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-class-properties',
],
},
...reactjs.configs.recommended.parserOptions,
Expand Down
2 changes: 1 addition & 1 deletion web/babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"presets": [["@babel/preset-env", {"modules": "commonjs", "useBuiltIns": "usage", "corejs": 3}], ["@babel/preset-react", {
"runtime": "automatic"
}], "@babel/preset-typescript"],
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/proposal-object-rest-spread"]
"plugins": ["@babel/plugin-transform-class-properties", "@babel/plugin-transform-object-rest-spread"]
}
5 changes: 2 additions & 3 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"@babel/core": "^7.28.3",
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin": "^7.26.10",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-syntax-jsx": "^7.16.0",
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.24.7",
Expand Down Expand Up @@ -70,7 +70,7 @@
"sharp": "^0.34.4"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-class-properties": "^7.28.6",
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
"@babel/preset-react": "^7.27.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-sql": "^6.10.0",
Expand All @@ -89,7 +89,6 @@
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-table": "^8.16.0",
"@tanstack/react-virtual": "^3.13.21",
"@types/classnames": "^2.3.4",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.0.0",
"@xterm/addon-fit": "^0.11.0",
Expand Down
2 changes: 1 addition & 1 deletion web/regression/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# relevant packages.
###########################################################
extras==1.0.0
fixtures==4.3.1
fixtures==4.3.2
linecache2==1.0.0
pbr==7.0.3
pycodestyle>=2.5.0
Expand Down
2 changes: 1 addition & 1 deletion web/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ module.exports = [{
presets: [['@babel/preset-env', {'modules': 'commonjs', 'useBuiltIns': 'usage', 'corejs': 3}], ['@babel/preset-react', {
'runtime': 'automatic'
}], '@babel/preset-typescript'],
plugins: ['@babel/plugin-proposal-class-properties', '@babel/proposal-object-rest-spread'],
plugins: ['@babel/plugin-transform-class-properties', '@babel/plugin-transform-object-rest-spread'],
},
},
}, {
Expand Down
Loading
Loading