7,157 questions
-3
votes
0
answers
31
views
All browsers (on multiple computers) are loading older versions of style.css for my footer [closed]
Out of the blue today, I noticed that the css for my footer had changed. When I used the inspector, I saw that an older version of style.css had been loaded (for the footer only). The latest version ...
-3
votes
0
answers
34
views
How to use custom version of swift in Xcode? [duplicate]
I am using Mac 14 and the highest version of Xcode that I can install is 16.2
And it comes with the bundled swift component - 6.0.3 version.
But my project requires swift 6.2 or later.
I was able to ...
2
votes
0
answers
88
views
Importing pyannote.audio into collab
Installation of all the packages I'm using into the collab environment worked fine
However whenever I try to run the following code cell
from pyannote.audio.pipelines.speaker_verification import ...
0
votes
0
answers
48
views
Keycloak v.26.0.0 causes the error in flt file
With the upgrade of Keycloak from version 25.0.0 to 26.0.0 (26.4.2), the login theme doesn't work and produces the following error:
FTL stack trace ("~" means nesting-related):
Failed at: #...
0
votes
1
answer
71
views
Is there a way to determine the Windows UBR value remotely with a low privilege user?
I have a Windows 2022 domain controller, version 10.0.20348.4052, set up in the default configuration and I need to determine the Windows Update Build Revision (UBR) Number ( the 4052 part) remotely, ...
1
vote
2
answers
118
views
'AttributeError: partially initialized module 'jax' has no attribute 'version' (most likely due to a circular import)' following import mellon
Installed the mellon package but when I try to import it, I get:
>>> import mellon
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/...
0
votes
0
answers
41
views
How to change default python on DOS with multple installations [duplicate]
The command C:\Windows\py -0p shows
-V:3.13 * C:\Program Files\Python313\python.exe
-V:3.12 C:\Program Files\Python312\python.exe
... It make sense because the command python -V ...
0
votes
0
answers
85
views
Python packages are asking for two different versions of websockets package
My python script is using atproto and simpleobsws but they are both asking for incompatible versions of websockets..
simpleobsws 1.4.3 requires websockets>=14.0
atproto 0.0.62 requires websockets&...
0
votes
0
answers
50
views
React Native 0.80.1 + Gradle 8.2 build failing with :react-native-gradle-plugin:compileKotlin error
I'm facing a build failure in my React Native 0.80.1 project with Gradle 8.2. The error occurs during :react-native-gradle-plugin:compileKotlin task.
Error Details:
Task :react-native-gradle-plugin:...
0
votes
2
answers
41
views
Version Conflict Issue while deleting doc from Elastic
In Elastic version 7.17.29, sometimes I can see the doc on hitting the GET query, and sometimes I can not:
GET <index_name>/_search
{
"query": {
"match": {
...
2
votes
4
answers
4k
views
Vite keeps detecting Node.js 18 even though Node 22.12 is installed on Windows
I'm trying to create a Vite + React project on Windows.
I previously had an old Node version (18.20.5), but I installed nvm4w to manage Node versions and then installed Node.js 22.12.0.
Running node -...
1
vote
0
answers
107
views
Renovate Workflow Fails to Detect .pre-commit-config.yaml for Version Bumping
I'm setting up a Renovate workflow to scan and update versions in our repository, which successfully handles files under .github and other files (e.g., Terraform files) by creating PRs with version ...
2
votes
0
answers
79
views
How to version FFI crates if source does not use semantic versioning?
Lets say there is a libfoo C library with matching headers. Documentation of bindgen suggests libfoo-sys crate should build dynamically on the client side, using their installed header versions. The ...
0
votes
0
answers
59
views
How to upgrade React Native project from React 17.0.2 / RN 0.68.2 to React 18.2.0 / RN 0.74.1 with Gradle upgrade?
I’m working on upgrading my React Native project
Currently, my setup is:
"react": "17.0.2", "react-native": "0.68.2"
and in android/build.gradle:
classpath(&...
0
votes
1
answer
100
views
Android: This APK will not be served to any users because it is completely shadowed by one or more APKs with higher version codes
I'm trying to publish a new release of my app, and no matter which version codes I try, I always get the same error:
This APK will not be served to any users because it is completely
shadowed by one ...
0
votes
0
answers
75
views
Can Sparkle Updater use a local appcast.xml file instead of a remote URL?
Is it possible to include the appcast.xml file directly within my project (for example, bundled inside the app or alongside the app binary) so that Sparkle uses this local appcast.xml file for updates,...
0
votes
1
answer
39
views
Group files whose names have embedded version numbers and process all but the latest versions
Preface:
This is a self-answered question, which is why there's no solution attempt in the question itself.
The task description is a focused reformulation of this now-deleted question.
I have a ...
2
votes
1
answer
76
views
Is there any property name that could set the version of a dependency?
Let's say I have a pom file, which includes a <properties> section, and a dependency -- let's say SLF4J for example.
Is there any possible property name that I could provide that would set the ...
0
votes
0
answers
103
views
I am trying to use JDK version 1.8.0_202. I updated the .zshrc file to use it but when I run java -version it is showing 24.0.1
My .zshrc file looks like
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home
export PATH=$PATH:$JAVA_HOME/bin
~ ...
0
votes
1
answer
79
views
How come I am seeing different files in my JavaVirtualMachines folder depending on how I navigate to the folder in Terminal? [closed]
I am using Terminal on my MacBook.
From the top directory if I do:
cd Library
cd Java
cd JavaVirtualMachines
ls
I see the following files:
corretto-21.0.5 corretto-22.0.2 openjdk-20.0.2 openjdk-23.0....
2
votes
2
answers
656
views
Flutter app not updating on physical device after code changes unless run via Android Studio(2024.3.2)
I'm using Android Studio for Flutter development, and after a recent update to Android Studio version 2024.3.2, I noticed a strange behavior when deploying the app to a physical device.
Problem:
I ...
-2
votes
1
answer
410
views
How to Check Tizen Version on TV to Determine API Compatibility (Tizen 6.5+ or Older)?
I’m unsure how to check the Tizen OS version on my TV. I need to determine whether it’s running Tizen 6.5 (or later) or an older version, as this affects whether I should use the Tizen API or H....
1
vote
1
answer
2k
views
Oracle linked service version 2.0 with workaround= 536870912
According to Microsoft we are supposed to upgrade azure Oracle linked service from version 1.0 to 2.0.
My azure oracle linked service version 1.0 has an additional connection property name workaround=’...
0
votes
1
answer
78
views
Model Derivative returns outdated properties JSON file
The Model Derivative API endpoint
https://developer.api.autodesk.com/modelderivative/v2/designdata/<"model urn">/metadata/<"model guid">/properties?forceget=true
...
0
votes
1
answer
78
views
How to find the version of a NuGet package that supports a specified .NET Framework version
Lets assume my project based on .NET Framework 4.0 and requires the NuGet package GuardClauses.
Currently GuardClauses' latest version is 5.0.0, which supports .NET Framework 4.6.1 and higher. So ...
1
vote
2
answers
93
views
Is There a List of File/Product Versions for the .NET Core Hosting Bundle?
We're doing some maintenance on a few web servers that we've installed the .NET Core Hosting Bundle (so apps can run under IIS). We can find the hosting bundle file (aspnetcorev2.dll), and I am able ...
1
vote
1
answer
507
views
Why is pandas saying that 'Engine' object has no attribute 'cursor'? [duplicate]
I'm upgrading my repo from Python 3.7 to 3.13. This is a very big jump, so I need to update many packages as well. One such package is pandas.
Upon upgrading to pandas 2.2.3 (the first version which ...
1
vote
1
answer
159
views
Using MS Graph API to get Version List and Version with minimal api requests
I am trying to use MS Graph API get accomplish two things. Create a method that returns a single version item and also a method that returns a list of all the versions. I am struggling with getting ...
2
votes
1
answer
207
views
How to resolve kotlin version conflict in Flutter project
My project was working fine until I upgraded my flutter version to Flutter 3.29.3 • channel stable and updated some packages to match with the new version. After that, so many packages such as ...
0
votes
0
answers
58
views
NVM for Windows – "activation error: exit status 1" when switching Node versions
I'm using NVM on Windows and trying to switch from Node.js 18 to 22 using:
nvm use 22
Node 22 is already installed, but I get this error:
activation error: exit status 1: 'C:\Users\Mohsin' is not ...
0
votes
1
answer
309
views
Flutter intl version conflict breaks awesome_notifications build
I'm facing a complex version conflict between Flutter packages in my project.
I use the following dependencies:
flutter_localizations → depends on intl: 0.19.0
My app originally had intl: ^0.20.0
...
4
votes
1
answer
347
views
How to change the default version of Swift in Xcode?
I use Xcode 16.3.
When I create a new project, it is automatically assigned to Swift 5. I would like to Swift 6.
I know how to change for an existing project, but I would like to do it by default for ...
0
votes
1
answer
950
views
Error when launching on emulator or physical phone on FLutter CardThemeData error
I'm facing issue i'm not able to solve.
Previously, i was able to launch my flutter app on my physical phone (or virtual). But my computer crashed and unable to boot. I install a new Windows, pull my ...
0
votes
0
answers
55
views
Issue in Razor page application
I created a Razor page application. when Idid that, I try to run the code. but it gives me een error:
System.TypeLoadException: 'Could not load type 'Microsoft.AspNetCore.Identity.UI.Services....
2
votes
1
answer
98
views
How to check "range" of versions?
I have a build_requirments_file.py file, which builds a requirments.txt file for a given python program, but the thing is... It creates something like:
huggingface_hub==currently installed version\
...
2
votes
2
answers
503
views
Fails new wheel version [closed]
10 hours ago Python Packaging Authority release wheel of version 0.46.1. It fails in our pipeline. Do you have same problem?
It returns this error:
error: invalid command 'bdist_wheel'
Therefore, we ...
-1
votes
2
answers
85
views
Composer version has upgraded versions of packages, site is break using PHP stan & PHP unit
I Ran
Composer update --ignore-platform-reqs
And now i have an error which is like That:
Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0&...
0
votes
0
answers
41
views
Matrix Multiplication Error in MATLAB R2022 but Not in R2024 (ECEF-to-ECI Transformation)
I'm running a MATLAB script on macOS that performs sensor fusion using GNSS and IMU data. The script runs perfectly in MATLAB R2024 but fails in MATLAB R2022 with the following error during the ECEF ...
0
votes
0
answers
72
views
Issue with simpleJdbcCall.execute when upgrading Java version from 8 to 21
I'm working on upgrading the Java version of a project in my company from java 8 to 21.
They have this module which was written years back
SimpleJdbcCall simpleJdbcCall;
simpleJdbcCall = new ...
0
votes
2
answers
349
views
How to set the version of my code only in the pom.xml
I am updating an old code and I need to set the version in the pom.xml using the version tag and then from there set different files with the version:
Manifest file when building the jar
I need to ...
0
votes
1
answer
70
views
wxPython StaticBitmap behavior changed with/before version 4.2.2?
In the course of buying a new laptop, I've upgraded wxPython to version 4.2.2, and in an otherwise-fine GUI application (including tree, forms, perspectives, ... all provided with wxPython), the ...
0
votes
1
answer
183
views
How do I get unpinned major and minor version tags for my repo using release-please?
I am using release please to generate releases and it's making tags like v3.2.1
However, I am finding it tedious to have to manually update the versions with every bugfix. Is it possible to get ...
0
votes
0
answers
58
views
I am facing issue of "Unable to find Gradle tasks to build: [:app, :]. Build mode: REBUILD"
I did everything but did not solve the below issue. Can someone help me?
I already include app
Unable to find Gradle tasks to build: [:app, :]. Build mode: REBUILD.
The issue I am facing is unable to ...
2
votes
0
answers
104
views
Exception while parsing expression `num > 0` - Method not found: 'Void System.Linq.Dynamic.Core.Parser.ExpressionParser..ctor
(https://i.sstatic.net/WiUADJnw.png)
RulesEngine's version is 5.4.0 and System.Linq.Dynamic.Core's version is 1.6.0, I thik there's a mismatch , but I'm unable to solve it. It's throwing an error when ...
1
vote
0
answers
290
views
How to Configure GitVersion for Stable Main Versions and Pre-Release Feature Tags with Patch Increments?
I'm trying to set up GitVersion (dotnet-gitversion tool version 6.1) so that:
The main branch always produces stable versions without any pre-release tags.
All branches, including feature branches, ...
0
votes
2
answers
52
views
python -m idlelib Switch to specific py version
MultiProcessing doesn't correctly show results in IDLE's output window, but it does show in IntelliJ / commandPrompt's Output window.
I'm trying to run:
python -m idlelib
But my environment variable ...
2
votes
2
answers
312
views
How to set the default JavaFX version when creating a JavaFX application
When I was using Mac, I found that when creating a JavaFX project through IntelliJ, the default version used was 17.0. Due to the upgrade of MAC, I need to use the latest 23.0 version of JavaFX. Is ...
1
vote
0
answers
70
views
Build error after updating android studio
After updating android studio, I face the attached error during the build process.
Execution failed for task ':app:compileDebugKotlin'.
> Could not isolate parameters org.jetbrains.kotlin.gradle....
0
votes
1
answer
68
views
Problems with scipy versions in the same environment but different machines
I am having problems using the same conda environment across different machines.
When I do conda list of the environment I get that the correct version is installed.
readline 8.2 ...
0
votes
0
answers
36
views
How to define project version only once in a multi module maven project [duplicate]
I have a multi module maven project with this structure:
maven-project/
│-- pom.xml (Main parent POM)
│-- module-a/
│ ├── pom.xml
│-- module-b/
│ ├── pom.xml
│-- module-c/
│ ├── pom.xml
│-- ...