Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Verstöße gegen diesen Verhaltenskodex können durch die Projektbetreuer überp

## 6. Kontakt

Bei Fragen oder zur Meldung von Verstößen bitte eine Nachricht an [@maxblan](https://github.com/maxblan) senden.
Bei Fragen oder zur Meldung von Verstößen bitte eine Nachricht an [@yoente](https://github.com/yoente) oder [@maxblan](https://github.com/maxblan) senden.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "_socha"
version = "3.7.2"
version = "4.0.0"
edition = "2021"

[lib]
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Python-Client für die Software-Challenge Germany 2025

[![Read the Docs](https://img.shields.io/readthedocs/socha-python-client?label=Docs)](https://socha-python-client.readthedocs.io/en/)
[![Read the Docs](https://img.shields.io/readthedocs/socha-python-client?label=Docs)](https://socha-python-client.readthedocs.io/de/latest/)
[![PyPI](https://img.shields.io/pypi/v/socha?label=PyPi)](https://pypi.org/project/socha/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/socha?label=Python)](https://pypi.org/project/socha/)
[![Discord](https://img.shields.io/discord/233577109363097601?color=blue&label=Discord)](https://discord.gg/ARZamDptG5)
Expand All @@ -16,13 +16,15 @@ Dieses Repository enthält das Python-Paket für die [Software-Challenge Germany

## Inhaltsverzeichnis

- [Installation](#installation)
- [Global](#global)
- [Virtuelle Umgebung](#virtuelle-umgebung)
- [Erste Schritte](#erste-schritte)
- [Startargumente](#startargumente)
- [Vorbereitung des Spielers für den Wettbewerb](#vorbereitung-des-spielers-für-den-wettbewerb)
- [Lokale Entwicklung](#lokale-entwicklung)
- [Python-Client für die Software-Challenge Germany 2025](#python-client-für-die-software-challenge-germany-2025)
- [Inhaltsverzeichnis](#inhaltsverzeichnis)
- [Installation](#installation)
- [Global](#global)
- [Virtuelle Umgebung](#virtuelle-umgebung)
- [Erste Schritte](#erste-schritte)
- [Startargumente](#startargumente)
- [Vorbereitung des Spielers für den Wettbewerb](#vorbereitung-des-spielers-für-den-wettbewerb)
- [Lokale Entwicklung](#lokale-entwicklung)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'python_player'
copyright = '2024, Software-Challenge Germany'
copyright = '2025, Software-Challenge Germany'
author = 'Software-Challenge Germany'

# -- General configuration ---------------------------------------------------
Expand Down
7 changes: 5 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- trunk-ignore-all(markdownlint/MD041) -->

Python Client for the Software-Challenge Germany 2024
Python Client for the Software-Challenge Germany 2026
=====================================================

|Read the Docs| |PyPI| |PyPI - Python Version| |Discord| |Documentation|
Expand All @@ -15,7 +15,7 @@ competition for students. The students have to develop an artificial
intelligence that plays and competes against other opponents in an
annually changing game.

This year it is the game `Hase und Igel <>`__.
This year it is the game `Piranhas <>`__.

Table of Contents
-----------------
Expand Down Expand Up @@ -201,6 +201,9 @@ start arguments.
+------------------------+--------------------------------------------+
| **-a, --architecture** | The architecture of the package. |
+------------------------+--------------------------------------------+
| **--python-version** | Specifies the build python version |
| | (e.g.: '3.10' - this is standard). |
+------------------------+--------------------------------------------+

Preparing Your Player for the Competition
-----------------------------------------
Expand Down
17 changes: 10 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
[build-system]
requires = ["maturin==1.6.0"]
requires = ["maturin==1.8.1"]
build-backend = "maturin"

[project]
name = "socha"
version = "3.7.2"
authors = [{ name = "maxblan", email = "stu222782@mail.uni-kiel.de" }]
description = "Dieses Paket ist für die Software-Challenge Germany 2025, bei der in dieser Saison das Spiel 'Hase und Igel' im Mittelpunkt steht."
version = "4.0.0"
authors = [
{ name = "yoente", email = "stu250140@mail.uni-kiel.de" },
{ name = "maxblan", email = "stu222782@mail.uni-kiel.de" },
]
description = "Dieses Paket ist für die Software-Challenge Germany 2026, bei der in dieser Saison das Spiel 'Piranhas' im Mittelpunkt steht."
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["xsdata==22.9"]
Expand All @@ -28,9 +31,9 @@ classifiers = [

[project.urls]
homepage = "https://software-challenge.de/"
repository = "https://github.com/FalconsSky/socha-python-client"
documentation = "https://software-challenge-python-client.readthedocs.io/en/latest/"
bug-tracker = "https://github.com/FalconsSky/Software-Challenge-Python-Client/issues"
repository = "https://github.com/software-challenge/player_python"
documentation = "https://socha-python-client.readthedocs.io/de/latest/"
bug-tracker = "https://github.com/software-challenge/player_python/issues"

[tool.maturin]
python-source = "python"
Expand Down
Loading
Loading