Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Fixing CI (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzminrobin authored Jul 26, 2023
1 parent 2e854e4 commit 9183a5d
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8029,7 +8029,7 @@ BSD-2-Clause AND BSD-3-Clause

---------------------------------------------------------

qutip 4.7.0 - BSD-2-Clause AND BSD-3-Clause
qutip 4.7.2 - BSD-2-Clause AND BSD-3-Clause


Copyright (c) QuTiP team 2011
Expand Down
3 changes: 1 addition & 2 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
-->
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="qdk-alpha" value="https://pkgs.dev.azure.com/ms-quantum-public/Microsoft Quantum (public)/_packaging/alpha/nuget/v3/index.json" protocolVersion="3" />
<add key="qdk-alpha" value="https://pkgs.dev.azure.com/ms-quantum-public/9af4e09e-a436-4aca-9559-2094cfe8d80c/_packaging/alpha/nuget/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
1 change: 1 addition & 0 deletions build/steps-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ steps:
displayName: Install pywin32 on Windows
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))

- task: NuGetAuthenticate@1

- pwsh: |
"##[info]Activating conda environment: $(CondaEnvironmentName)" | Write-Host
Expand Down
2 changes: 2 additions & 0 deletions build/steps-selenium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ steps:
displayName: "Bootstrap"
workingDirectory: '$(System.DefaultWorkingDirectory)'

- task: NuGetAuthenticate@1

##
# Install IQ# kernel
##
Expand Down
2 changes: 2 additions & 0 deletions build/steps-selfcontained.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ steps:
Move-Item "$Env:SYSTEM_DEFAULTWORKINGDIRECTORY/artifact/iqsharp/drops" "$Env:SYSTEM_DEFAULTWORKINGDIRECTORY/drops"
displayName: "Copy build artifacts to IQ# working directory"

- task: NuGetAuthenticate@1

##
# Pack
##
Expand Down
2 changes: 2 additions & 0 deletions build/steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ steps:
displayName: "Bootstrap"
workingDirectory: '$(System.DefaultWorkingDirectory)'

- task: NuGetAuthenticate@1

##
# Build, test & pack
##
Expand Down
2 changes: 1 addition & 1 deletion conda-recipes/iqsharp/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if ("$Env:BUILD_RELEASETYPE" -ne "release") {
"<?xml version=""1.0"" encoding=""utf-8""?>
<configuration>
<packageSources>
<add key=""qdk-alpha"" value=""https://pkgs.dev.azure.com/ms-quantum-public/Microsoft Quantum (public)/_packaging/alpha/nuget/v3/index.json"" protocolVersion=""3"" />
<add key=""qdk-alpha"" value=""https://pkgs.dev.azure.com/ms-quantum-public/9af4e09e-a436-4aca-9559-2094cfe8d80c/_packaging/alpha/nuget/v3/index.json"" protocolVersion=""3"" />
</packageSources>
</configuration>" | Out-File -FilePath $NuGetDirectory/NuGet.Config -Encoding utf8
}
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Extensions/NuGet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static async IAsyncEnumerable<IPackageSearchMetadata> SearchPackagesByIdA
while (true)
{
var metadataBatch = (await searchResource.SearchAsync(
$"packageId:{packageId}",
packageId,
filters: new SearchFilter(includePrerelease: includePrerelease),
skip: skip,
take: batchSize,
Expand Down
2 changes: 1 addition & 1 deletion src/Python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ numpy==1.22.0
pytest==7.2.0
pygments==2.12.0 # to avoid high-severity issue.
pyzmq==25.0.0
qutip==4.7.0
qutip==4.7.2
selenium==4.2.0
setuptools==67.7.2
wheel==0.38.1
Expand Down

0 comments on commit 9183a5d

Please sign in to comment.