- Notifications
You must be signed in to change notification settings - Fork749
Merge release branch back into master#1866
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
42 commits Select commitHold shift + click to select a range
28a78ed
Bump version to 3.0.0-rc1
filmore84731f
implemented dynamic equality and inequality for PyObject instances
lostmsu2edd800
Fix broken prefix and debug leftover
filmor4b6ac12
Bump release candidate version
filmor2016371
Make MANIFEST.in more explicit
filmord484797
Use informational version as clr's __version__ attribute
filmor25f21f9
Drop obsolete packages.config
filmor332f8e7
Fix (U)IntPtr construction (#1861)
filmor60a719c
Implement non-simple String constructors explicitly (#1862)
filmorb79ae2f
Fix missing docstring for types with custom constructors (#1865)
filmor863397a
Bump release candidate version
filmor59b1c51
Finalizer.Instance.Collect() and Runtime.TryCollectingGarbage(...) ar…
lostmsu469ec67
fixed leak in NewReference.Move
lostmsu9bb8fe6
Merge pull request #1873 from losttech/bugs/ctor-leak
filmor93631af
Bump release candidate version
filmora5e9b55
Generate XML documentation on build and add to it NuGet package (#1878)
lostmsu85d0ca6
mention the need for PythonEngine.Initialize and BeginAllowThreads in…
lostmsu5f63c67
BREAKING: disabled implicit conversion from Python objects implementi…
lostmsu0909021
Explicit float and int conversion for builtin types (#1904)
filmorbd48dc1
Fill nb_index slot for integer types (#1907)
filmor4241493
fixed use of the process handle after Process instance goes out of sc…
lostmsubdf671e
fixed new line character at the end of informational version (#1941)
lostmsu3f12469
Bump clr-loader dependency to 0.2.3 and adjust interface
filmordb52dde
Improve error message if the runtime fails to load
filmorfd8fd3b
Fix manifest so we can build with python -m build
filmor91d3e55
reenabled test for https://github.com/pythonnet/pythonnet/issues/1256…
lostmsu43769f5
Merge pull request #1942 from filmor/configless-coreclr
filmorf1ef11d
Bump release candidate version
filmora02799d
Fix implicit float conversion for classes that derive from float
filmor2194d6c
Drop PyLong_Check (which checked for exact type) in favour of PyInt_C…
filmor52cf03c
Merge pull request #1908 from filmor/implicit-float-int
filmor15a8b26
Bump release candidate version
filmor08fd638
Add initial documentation setup
filmor64ea044
Ensure build props always read the correct version file
filmor13f2a9c
Convert back to RST, add section on runtime loading
filmor42b122d
Publish documentation from the release branch for now
filmorcc2fdac
Adjust installation documentation
filmor80adda9
Merge pull request #1863 from filmor/docs
filmor3c4dd16
Update README
filmor33b107c
Move clr module to separate file
filmor6ec635d
Drop unused param doc
filmoraae9d56
Bump version to 3.0.0
filmorFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
40 changes: 40 additions & 0 deletions.github/workflows/docs.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Documentation | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Doxygen Action | ||
uses: mattnotmitt/doxygen-action@1.9.4 | ||
with: | ||
working-directory: "doc/" | ||
- name: Build Sphinx documentation | ||
run: | | ||
pip install -r doc/requirements.txt | ||
sphinx-build doc/source/ ./doc/build/html/ | ||
- name: Upload artifact | ||
# Automatically uploads an artifact from the './_site' directory by default | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: doc/build/html/ | ||
deploy: | ||
if: github.ref == 'refs/heads/release' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
5 changes: 5 additions & 0 deletionsCHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionDirectory.Build.props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletionsMANIFEST.in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
graft src/runtime | ||
prune src/runtime/obj | ||
prune src/runtime/bin | ||
include src/pythonnet.snk | ||
include Directory.Build.* | ||
include pythonnet.sln | ||
include version.txt | ||
26 changes: 21 additions & 5 deletionsREADME.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletionsdoc/.gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
doxygen_xml/ | ||
build/ |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.