Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(new 903 version): adds/removes/ammends rules for 24/25 #191

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
folder: build # The folder the action should deploy.

- name: Modify for 903
run: node scripts/productionise-html.js --wheelPath /bin/dist/csc_validator_be_903-0.1.6-py3-none-any.whl --tool Tool903
run: node scripts/productionise-html.js --wheelPath /bin/dist/csc_validator_be_903-0.1.7-py3-none-any.whl --tool Tool903

- name: Pushes files to 903/LAC repo
if: github.ref == 'refs/heads/main'
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function App(props: AppProps) {
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.6' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.6' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
<Version versionNumber='0.1.7' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</>
) : (
<Loader type='cover' label='Loading Python API' />
Expand Down
2 changes: 1 addition & 1 deletion src/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Landing = (props: LandingProps) => {
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.6' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.6' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
<Version versionNumber='0.1.7' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</Container>
</ThemeProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const rootEl = document.getElementById('root') as HTMLElement;
const tool = rootEl.getAttribute('data-tool') || Tool.Tool903;
const wheelPath =
rootEl.getAttribute('data-wheelpath') ||
'/bin/dist/csc_validator_be_903-0.1.6-py3-none-any.whl';
'/bin/dist/csc_validator_be_903-0.1.7-py3-none-any.whl';

const Core = () => {
const CookieGate = withCookieGate({
Expand Down