# PASC 2023 abstract GT4Py is a Python framework for the development of weather and climate applications that aims to simplify the process of developing and maintaining high-performance codes for these applications. Instead of intermixing optimization directives for specific hardware architectures with numerical algorithms as regularly done with Fortran or C++, GT4Py separates these concerns. Domain scientists are provided with a declarative Python interface to express common computational patterns of dynamical cores and physical parametrizations. An optimizing toolchain then transforms this high-level representation into an implementation for the target compute architecture. Without changes to the application, performance engineers can develop new optimizations or backends for new architectures. This approach allows for greater productivity for domain scientists and performance engineers alike. We will present recent developments in the project: support for non-cartesian meshes, a new programming interface enabling operator composition, and a redesigned intermediate representation that clearly separates stateful from stateless computations, simplifying the creation of optimization passes. We further showcase a performance comparison of the ICON model between the original Fortran implementation using openACC and a GT4Py-enabled version developed as part of the EXCLAIM project. ------------------------ Final abstract: GT4Py is a Python framework for weather and climate applications simplifying the development and maintenance of high-performance codes in prototyping and production environments. GT4Py separates model development from hardware architecture dependent optimizations, instead of intermixing both together in source code, as regularly done in lower-level languages like Fortran, C, or C+. Domain scientists focus solely on numerical modeling using a declarative embedded domain specific language supporting common computational patterns of dynamical cores and physical parametrizations. An optimizing toolchain then transforms this high-level representation into a finely-tuned implementation for the target hardware architecture. This separation of concerns allows performance engineers to implement new optimizations or support new hardware architectures without requiring changes to the application, increasing productivity for domain scientists and performance engineers alike. We will present recent developments in the project: support for non-cartesian meshes, a new programming interface enabling operator composition, and a redesigned intermediate representation that separates stateful from stateless computations, simplifying the creation of optimization passes. We further showcase a performance comparison of the ICON model between the original Fortran implementation using openACC and a GT4Py-enabled version developed as part of the EXCLAIM project.