Skip to content

.NET Foundation updates #1148

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

Merged
merged 4 commits into from
May 18, 2020
Merged
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
6 changes: 4 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -2,8 +2,11 @@

## Development Lead

- Barton Cline ([@BartonCline](https://github.com/BartonCline))
- Benedikt Reinartz ([@filmor](https://github.com/filmor))
- Victor Milovanov ([@lostmsu](https://github.com/lostmsu))

## Former Development Leads
- Barton Cline ([@BartonCline](https://github.com/BartonCline))
- Brian Lloyd ([@brianlloyd](https://github.com/brianlloyd))
- David Anthoff ([@davidanthoff](https://github.com/davidanthoff))
- Denis Akhiyarov ([@denfromufa](https://github.com/denfromufa))
@@ -54,7 +57,6 @@
- Sean Freitag ([@cowboygneox](https://github.com/cowboygneox))
- Serge Weinstock ([@sweinst](https://github.com/sweinst))
- Simon Mourier ([@smourier](https://github.com/smourier))
- Victor Milovanov ([@lostmsu](https://github.com/lostmsu))
- Viktoria Kovescses ([@vkovec](https://github.com/vkovec))
- Ville M. Vainio ([@vivainio](https://github.com/vivainio))
- Virgil Dupras ([@hsoft](https://github.com/hsoft))
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

All notable changes to Python for .NET will be documented in this file.
This project adheres to [Semantic Versioning][].
All notable changes to Python.NET will be documented in this file. This
project adheres to [Semantic Versioning][].

This document follows the conventions laid out in [Keep a CHANGELOG][].

7 changes: 6 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# How to contribute

PythonNet is developed and maintained by unpaid community members so well
Python.NET is developed and maintained by unpaid community members so well
written, documented and tested pull requests are encouraged.

By submitting a pull request for this project, you agree to license your
contribution under the MIT license to this project.

This project has adopted the code of conduct defined by the Contributor
Covenant to clarify expected behavior in our community. For more information
see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).

## Getting Started

- Make sure you have a [GitHub account](https://github.com/signup/free)
@@ -41,3 +45,4 @@ contribution under the MIT license to this project.

- [General GitHub documentation](https://help.github.com/)
- [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
- [.NET Foundation Code of Conduct](https://dotnetfoundation.org/about/code-of-conduct)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2006-2019 the contributors of the "Python for .NET" project
Copyright (c) 2006-2020 the contributors of the Python.NET project

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
30 changes: 15 additions & 15 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pythonnet - Python for .NET
pythonnet - Python.NET
===========================

|Join the chat at https://gitter.im/pythonnet/pythonnet|
@@ -8,7 +8,7 @@ pythonnet - Python for .NET
|license shield| |pypi package version| |conda-forge version| |python supported shield|
|stackexchange shield|

Python for .NET is a package that gives Python programmers nearly
Python.NET is a package that gives Python programmers nearly
seamless integration with the .NET Common Language Runtime (CLR) and
provides a powerful application scripting tool for .NET developers. It
allows Python code to interact with the CLR, and may also be used to
@@ -17,8 +17,7 @@ embed Python into a .NET application.
Calling .NET code from Python
-----------------------------

Python for .NET allows CLR namespaces to be treated essentially as
Python packages.
Python.NET allows CLR namespaces to be treated essentially as Python packages.

.. code-block::

@@ -90,18 +89,24 @@ Output:
int32
[ 6. 10. 12.]



Resources
---------

Information on installation, FAQ, troubleshooting, debugging, and
projects using pythonnet can be found in the Wiki:

https://github.com/pythonnet/pythonnet/wiki

Python 3.8.0 support
--------------------
Mailing list
https://mail.python.org/mailman/listinfo/pythondotnet
Chat
https://gitter.im/pythonnet/pythonnet

Some features are disabled in Python 3.8.0 because of
`this bug in Python <https://bugs.python.org/issue37633>`_. The error is
``System.EntryPointNotFoundException : Unable to find an entry point named
'Py_CompileString' in DLL 'python38'``. This will be fixed in Python 3.8.1.
.NET Foundation
---------------
This project is supported by the `.NET Foundation <https://dotnetfoundation.org>`_.

.. |Join the chat at https://gitter.im/pythonnet/pythonnet| image:: https://badges.gitter.im/pythonnet/pythonnet.svg
:target: https://gitter.im/pythonnet/pythonnet?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
@@ -121,8 +126,3 @@ Some features are disabled in Python 3.8.0 because of
:target: http://stackoverflow.com/questions/tagged/python.net
.. |conda-forge version| image:: https://img.shields.io/conda/vn/conda-forge/pythonnet.svg
:target: https://anaconda.org/conda-forge/pythonnet

Resources
---------
Mailing list: https://mail.python.org/mailman/listinfo/pythondotnet
Chat: https://gitter.im/pythonnet/pythonnet
2 changes: 1 addition & 1 deletion demo/wordpad.py
Original file line number Diff line number Diff line change
@@ -382,7 +382,7 @@ def InitializeComponent(self):
self.label1.Size = System.Drawing.Size(296, 140)
self.label1.TabIndex = 2
self.label1.Text = "Python Wordpad - an example winforms " \
"application using Python for .NET"
"application using Python.NET"

self.AutoScaleBaseSize = System.Drawing.Size(5, 13)
self.ClientSize = System.Drawing.Size(300, 150)
4 changes: 2 additions & 2 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@
// associated with an assembly.
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("pythonnet")]
[assembly: AssemblyProduct("Python for .NET")]
[assembly: AssemblyCopyright("Copyright (c) 2006-2019 the contributors of the 'Python for .NET' project")]
[assembly: AssemblyProduct("Python.NET")]
[assembly: AssemblyCopyright("Copyright (c) 2006-2020 the contributors of the Python.NET project")]
[assembly: AssemblyTrademark("")]

[assembly: AssemblyCulture("")]
2 changes: 1 addition & 1 deletion src/runtime/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Python for .NET")]
[assembly: AssemblyTitle("Python.NET")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDefaultAlias("Python.Runtime.dll")]

4 changes: 2 additions & 2 deletions src/runtime/Python.Runtime.15.csproj
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@
<VersionPrefix>2.4.1</VersionPrefix>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Title>Python for .NET</Title>
<Copyright>Copyright (c) 2006-2019 the contributors of the 'Python for .NET' project</Copyright>
<Title>Python.NET</Title>
<Copyright>Copyright (c) 2006-2020 the contributors of the Python.NET project</Copyright>
<Description>Python and CLR (.NET and Mono) cross-platform language interop</Description>
<Authors>pythonnet</Authors>
<PackageLicenseUrl>https://github.com/pythonnet/pythonnet/blob/master/LICENSE</PackageLicenseUrl>