Skip to content

Commit a424f9b

Browse files
authored
Merge pull request #1209 from Krastanov/sk/morepythonversions
permit more python versions
2 parents 11dd8b9 + 1377f14 commit a424f9b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

docs/src/_changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Changelog](https://keepachangelog.com).
1313
- Fixed the display of `UnionAll` types such as `Pair.body` ([#1203]).
1414
- Fixed a bug in the PythonCall extension that would break opening comms from
1515
the frontend side ([#1206]).
16+
- The PythonCall extension accidentally forced some test dependencies to be
17+
installed outside of the tests, now they have been fully moved into the test
18+
suite ([#1209]).
1619

1720
### Changed
1821
- Replaced JSON.jl with a vendored copy of

CondaPkg.toml renamed to test/CondaPkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jupyter_client = ""
77
ipympl = ""
88
comm = ""
99
# Python 3.14 segfaults something awful
10-
python = "3.13.*"
10+
python = "<3.14"

test/kernel.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copy CondaPkg.toml to the test project so that it gets found by CondaPkg
2+
# during the tests. If this was instead in the project directory it would also
3+
# be used by CondaPkg outside of the tests, which we don't want.
4+
cp(joinpath(@__DIR__, "CondaPkg.toml"), joinpath(dirname(Base.active_project()), "CondaPkg.toml"))
5+
16
ENV["JULIA_CONDAPKG_ENV"] = "@ijulia-tests"
27
ENV["JULIA_CONDAPKG_VERBOSITY"] = -1
38

0 commit comments

Comments
 (0)